/* =============================================
   Branding Projects (BP) — Stylesheet
   =============================================
   – Warm off-white background
   – Thin 1px border grid system
   – Minimal typography (DM Sans)
   – Editorial split hero
   – 3-column project grid
   ============================================= */

/* ---- Page Transition ---- */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-outer-bg, #f0eeeb);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-transition.is-leaving {
  opacity: 1;
  pointer-events: all;
}

body.is-entering .page-transition {
  opacity: 1;
  transition: none;
}

body.is-entering {
  overflow: hidden;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #faf9f7;
  --color-surface: #f3f1ee;
  --color-text: #1a1a1a;
  --color-text-muted: #6b6b6b;
  --color-border: #e5e2dc;
  --color-white: #ffffff;
  --color-outer-bg: #f0eeeb;
  --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --header-h: 112px;
  --gutter: 1px;
  --radius: 16px;
  --radius-outer: 20px;
  --radius-card: 12px;
  --shadow-soft: 0 4px 40px rgba(0, 0, 0, 0.06), 0 1px 8px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.04);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--color-outer-bg);
}

body {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-outer-bg);
  max-width: 90%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 0;
}

.page-wrapper {
  width: 100%;
  position: relative;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}


/* ---- Middle Column (shared) ---- */
.hero__middle,
.family__middle,
.showcase__middle,
.process__middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px 24px;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.services__middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px 24px;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.middle-copy {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-muted);
  text-align: center;
}

.services__middle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.services__middle-icon {
  width: 48px;
  height: 48px;
  color: var(--color-text-muted);
}

.family__middle {
  border-left-color: rgba(0, 0, 0, 0.08);
  border-right-color: rgba(0, 0, 0, 0.08);
}

.middle-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

/* ---- Fade-in animation targets ---- */
.fade-target {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   HEADER TICKER
   ============================================= */
.header-ticker {
  overflow: hidden;
  white-space: nowrap;
  background: #1a1a1a;
  padding: 6px 0;
}

.header-ticker__track {
  display: inline-flex;
  gap: 48px;
  animation: ticker 12s linear infinite;
}

.header-ticker__track span {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  flex-shrink: 0;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  height: auto;
  padding: 16px 24px;
}

@keyframes navBlobA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30%, -10%) scale(1.1); }
  66% { transform: translate(-20%, 10%) scale(0.95); }
}
@keyframes navBlobB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30%, 15%) scale(0.9); }
  66% { transform: translate(25%, -10%) scale(1.1); }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding: 0 42px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  max-width: 45%;
  min-width: 820px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: rgba(230, 226, 220, 0.35);
}

.header__inner::before,
.header__inner::after {
  content: '';
  position: absolute;
  width: 140%;
  height: 200%;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: normal;
}

.header__inner::before {
  background: radial-gradient(circle, rgba(215, 200, 180, 0.7) 0%, transparent 70%);
  top: -50%;
  left: -40%;
  animation: navBlobA 8s ease-in-out infinite;
}

.header__inner::after {
  background: radial-gradient(circle, rgba(180, 200, 220, 0.7) 0%, transparent 70%);
  top: -50%;
  right: -40%;
  animation: navBlobB 10s ease-in-out infinite;
}

/* ---- Logo (left) ---- */
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.header__logo-mark {
  flex-shrink: 0;
  height: 48px;
  width: auto;
  filter: brightness(0);
}

.header__logo-text {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.035em;
  text-transform: none;
}

.header__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) opacity(0.85);
}

.header__logo-tagline {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-text);
  opacity: 0.85;
  white-space: nowrap;
}

/* ---- Nav Links ---- */
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 0 24px;
  height: 100%;
  transition: opacity var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.nav-link:hover {
  opacity: 0.5;
  background: none;
  color: inherit;
}

.nav-link--dropdown {
  cursor: default;
}

.nav-link--dropdown svg {
  margin-left: 2px;
}

/* ---- Nav links (inline) ---- */
.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.header__nav {
  position: relative;
}

.header__nav-link {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--color-text);
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

.header__nav-indicator {
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 1.5px;
  width: 0;
  background-color: currentColor;
  pointer-events: none;
  opacity: 0;
  transform: translateX(0);
  transition:
    transform 0.45s cubic-bezier(0.76, 0, 0.24, 1),
    width 0.45s cubic-bezier(0.76, 0, 0.24, 1),
    opacity 0.25s ease;
}

.header__nav.has-indicator .header__nav-indicator {
  opacity: 0.4;
}

/* ---- Language Switch ---- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  padding-left: 16px;
  border-left: 1px solid var(--color-border);
}

.lang-switch__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lang-switch__link:hover {
  color: var(--color-text);
}

.lang-switch__link.is-active {
  color: var(--color-text);
  font-weight: 600;
}

.lang-switch__divider {
  font-size: 13px;
  color: var(--color-text-muted);
}

.header__nav-link,
.header__nav-link:visited,
.header__nav-link:active {
  text-decoration: none;
}

.header__nav-link.is-active {
  font-weight: 500;
}

/* =============================================
   FULLSCREEN MENU OVERLAY
   ============================================= */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #d5d8d0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.menu-overlay__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  position: relative;
}

.menu-overlay__left-link {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}

.menu-overlay__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.menu-overlay__logo-text {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: var(--color-text);
}

.menu-overlay__close {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.menu-overlay__close-label {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}

.menu-overlay__close-icon {
  font-size: 24px;
  line-height: 1;
  color: var(--color-text);
}

.menu-overlay__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 32px;
}

.menu-overlay__link {
  font-family: var(--font-primary);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--color-text);
  padding: 16px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease;
}

.menu-overlay__link:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.menu-overlay__link:hover {
  opacity: 0.5;
}

.menu-overlay__bottom {
  padding: 0 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-overlay__lang {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-card);
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  cursor: pointer;
}

.menu-overlay__buy-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--color-text);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.menu-overlay__buy-btn:hover {
  opacity: 0.85;
}

/* =============================================
   BURGER BUTTON
   ============================================= */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.header__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__burger.is-open span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.header__burger.is-open span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .header__burger {
    display: flex;
  }
}

/* =============================================
   MOBILE NAV
   ============================================= */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: var(--color-bg);
  padding: 48px 24px;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav__link {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.mobile-nav__actions {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  border-bottom: none;
  margin-bottom: 0;
  background: transparent;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 80px;
  gap: 80px;
  overflow: hidden;
}

.hero__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero__left {
  flex: 1;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
}

.hero__label-logo {
  height: 16px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: brightness(0);
}

@media (max-width: 600px) {
  .hero__label {
    display: none;
  }

  /* Etiketten auf Mobile einblenden, enger an Headline */
  .services__label,
  .trends__label,
  .showcase__label,
  .family__label,
  .concierge__label,
  .process__label,
  .whoweare__label,
  .office__label,
  .special__label,
  .coming-soon__label {
    display: block !important;
    margin-bottom: 10px;
  }

  /* Stanley/Stella Video: curved corners auf Mobile */
  .family__right--video {
    padding: 16px;
  }

  .family__right--video video {
    border-radius: var(--radius-card);
  }
}

.hero__label-text {
  display: inline-block;
  white-space: nowrap;
}

/* Section-Etiketten ausgeblendet — Hero/Intro bleibt sichtbar */
.services__label,
.trends__label,
.showcase__label,
.family__label,
.concierge__label,
.process__label,
.whoweare__label,
.office__label,
.special__label,
.coming-soon__label {
  display: none !important;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.hero__headline em {
  font-style: normal;
}

.hero__headline-strong {
  font-weight: 400;
  white-space: nowrap;
}

.hero__headline-amp {
  font-family: var(--font-primary);
  font-weight: 400;
}

.hero__right {
  flex-shrink: 0;
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

.hero__card {
  overflow: hidden;
  border-radius: 8px;
  will-change: transform;
}

.hero__card img,
.hero__card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__card--1 {
  width: clamp(220px, 22vw, 420px);
  aspect-ratio: 10 / 13;
  transform: rotate(-3deg) translateY(-20px);
}

.hero__card--2 {
  width: clamp(200px, 20vw, 380px);
  aspect-ratio: 3 / 4;
  transform: rotate(4deg) translateY(10px);
}

/* ---- Hero bottom bar ---- */

/* ---- Stitching effect ---- */
.hero__stitch {
  flex-shrink: 0;
  width: 2px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-border);
  opacity: 0.5;
}

.hero__stitch-svg {
  width: 2px;
  height: 80%;
}

.hero__stitch-line {
  stroke-dasharray: 8 6;
  stroke-dashoffset: 200;
  animation: stitch-draw 3s ease forwards 0.5s;
}

@keyframes stitch-draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* ---- Global Stitch (curved through page) ---- */
.global-stitch {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  max-width: 100%;
}

.global-stitch__path {
  stroke: #1a1a1a;
  stroke-width: 1;
  stroke-linecap: round;
  opacity: 0.18;
  transition: stroke-dashoffset 0.05s linear;
}

/* Ensure all sections sit above the stitch */
.header,
.hero,
.services,
.full-image,
.trends,
.products,
.showcase,
.family,
.concierge,
.process,
.whoweare,
.journal,
.catalogue,
.modal,
.fab {
  position: relative;
  z-index: 2;
}

.hero__bar {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px dashed var(--color-border);
  padding-top: 28px;
}

.hero__bar-label {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  white-space: nowrap;
  flex-shrink: 0;
}

.hero__bar-line {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--color-border) 0, var(--color-border) 6px, transparent 6px, transparent 12px);
}

.hero__bar-copy {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 520px;
  flex-shrink: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-wrap: pretty;
}

.hero__highlight {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px dashed rgba(0, 0, 0, 0.25);
  background: transparent;
  transition: none;
}

/* =============================================
   SERVICES / LEISTUNG
   ============================================= */
.services {
  border-bottom: 1px solid var(--color-border);
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.services__left {
  padding: 64px 48px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.services__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.services__heading {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.services__heading em {
  font-style: normal;
}

.services__copy {
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 400px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.services__right {
  display: flex;
  align-items: center;
}

.services__list {
  width: 100%;
}

.services__item {
  border-bottom: 1px solid var(--color-border);
  background-color: transparent;
  transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.services__item:first-child {
  border-top: 1px solid var(--color-border);
}

.services__item:last-child {
  border-bottom: none;
}

.services__item.is-open {
  border-radius: var(--radius-card);
}

.services__item-header {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 36px 48px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.services__item:not(.is-open) .services__item-header:hover {
  background-color: rgba(0, 0, 0, 0.015);
}

.services__toggle {
  margin-left: auto;
  font-size: 24px;
  font-weight: 300;
  color: var(--color-text);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.services__item.is-open .services__toggle {
  transform: rotate(45deg);
}

.services__number {
  font-size: 24px;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  min-width: 32px;
}

.services__icon {
  display: none;
}

.services__name {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.services__subs {
  height: 0;
  overflow: hidden;
  transition: height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.services__subs-inner {
  padding: 0 48px 32px;
  padding-left: 128px;
}

.services__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
}

.services__tag {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #1a1a1a;
  padding: 14px 28px;
  border: none;
  border-radius: 100px;
  background: #c8e6fc;
  opacity: 0;
  transform: translateY(4px) rotate(0deg);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Color + rotation cycling */
.services__tag:nth-child(4n+1) { background: #c8e6fc; }
.services__tag:nth-child(4n+2) { background: #d6f542; color: #1a1a1a; }
.services__tag:nth-child(4n+3) { background: #1a1a1a; color: #fff; }
.services__tag:nth-child(4n)   { background: #f5c77e; }

.services__tag::after {
  content: none;
}

.services__tag:last-child::after {
  content: none;
}

.services__tag:hover {
  transform: rotate(0deg) scale(1.05) !important;
}

.services__item.is-open .services__tag {
  opacity: 1;
}

.services__item.is-open .services__tag:nth-child(1) { transition-delay: 0.08s; transform: rotate(-3deg); }
.services__item.is-open .services__tag:nth-child(2) { transition-delay: 0.12s; transform: rotate(2deg); }
.services__item.is-open .services__tag:nth-child(3) { transition-delay: 0.16s; transform: rotate(-1.5deg); }
.services__item.is-open .services__tag:nth-child(4) { transition-delay: 0.20s; transform: rotate(3deg); }
.services__item.is-open .services__tag:nth-child(5) { transition-delay: 0.24s; transform: rotate(-2deg); }
.services__item.is-open .services__tag:nth-child(6) { transition-delay: 0.28s; transform: rotate(1.5deg); }
.services__item.is-open .services__tag:nth-child(7) { transition-delay: 0.32s; transform: rotate(-3.5deg); }
.services__item.is-open .services__tag:nth-child(8) { transition-delay: 0.36s; transform: rotate(2.5deg); }

/* =============================================
   SHOWCASE — LATEST WORK
   ============================================= */
.showcase {
  width: 100%;
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--radius-outer);
  margin: 120px 0;
  overflow: hidden;
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.showcase__left {
  padding: 64px 48px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.showcase__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.showcase__heading {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.showcase__heading em {
  font-style: normal;
}

.showcase__heading-amp {
  font-family: var(--font-primary);
  font-weight: 400;
}

.showcase__copy {
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 400px;
  margin-bottom: 28px;
  text-wrap: pretty;
}

.showcase__partner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.showcase__partner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-text);
  display: inline-block;
}

/* ---- Gallery (3 side by side) ---- */
.showcase__right {
  position: relative;
  display: grid;
  width: 100%;
}

.showcase__right > .showcase__gallery {
  grid-column: 1;
  grid-row: 1;
  transition: opacity 0.5s ease;
}

.showcase__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}

.showcase__info-stack {
  display: grid;
}

.showcase__info-stack > .showcase__info {
  grid-column: 1;
  grid-row: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.showcase[data-project="0"] .showcase__gallery--5,
.showcase[data-project="0"] .showcase__info--5,
.showcase[data-project="1"] .showcase__gallery--1,
.showcase[data-project="1"] .showcase__info--1,
.showcase[data-project="2"] .showcase__gallery--2,
.showcase[data-project="2"] .showcase__info--2,
.showcase[data-project="3"] .showcase__gallery--3,
.showcase[data-project="3"] .showcase__info--3,
.showcase[data-project="4"] .showcase__gallery--4,
.showcase[data-project="4"] .showcase__info--4 {
  opacity: 1;
  pointer-events: auto;
}

.showcase__gallery-item {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-card);
}

.showcase__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase__gallery-item:hover img {
  transform: scale(1.03);
}

.showcase__dot:hover {
  transform: scale(1.3);
}

/* =============================================
   TRENDS / HOT PIECES
   ============================================= */
.trends {
  padding-top: 120px;
  padding-bottom: 0;
}

.trends__full {
  padding: 64px 48px;
}

.trends__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.trends__heading {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.trends__heading em {
  font-style: normal;
}

.trends__copy {
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 400px;
  text-wrap: pretty;
}

/* =============================================
   FULL-WIDTH IMAGE
   ============================================= */
.full-image {
  width: 100%;
  overflow: hidden;
  padding: 0;
  height: 80vh;
  position: relative;
  border-radius: var(--radius-outer);
}

.full-image img,
.full-image video {
  width: 100%;
  height: 120%;
  display: block;
  object-fit: cover;
  object-position: center 70%;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}

/* =============================================
   WER WIR SIND
   ============================================= */
.whoweare {
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--radius-outer);
  margin: 120px 0;
  overflow: hidden;
}

.whoweare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.whoweare__left {
  padding: 32px 56px 80px 32px;
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.whoweare__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.whoweare__heading {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.whoweare__heading em {
  font-style: normal;
}

.whoweare__copy {
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 520px;
  text-wrap: pretty;
}

.whoweare__bio {
  margin-top: 20px;
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 520px;
  text-wrap: pretty;
}

.whoweare__right {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.whoweare__image {
  width: 100%;
  height: 100%;
  position: relative;
}

.whoweare__image img,
.whoweare__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.whoweare__play {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 60px;
  color: var(--color-text);
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.whoweare__play:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.04);
}

.whoweare__play svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* =============================================
   COMING SOON
   ============================================= */
/* ---- Catalogue ---- */
.catalogue {
  padding-top: 80px;
}

.catalogue__iframe {
  width: 100%;
  height: 800px;
  border: none;
  display: block;
}

.coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  padding: 120px 24px;
}

.coming-soon__inner {
  max-width: 600px;
}

.coming-soon__label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  display: block;
}

.coming-soon__heading {
  font-family: var(--font-heading);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.coming-soon__heading em {
  font-style: normal;
}

.coming-soon__copy {
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-text-muted);
  text-wrap: pretty;
}

.coming-soon__cards {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: flex-end;
  margin-top: 48px;
}

.coming-soon__card {
  overflow: hidden;
  border-radius: 8px;
  will-change: transform;
}

.coming-soon__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coming-soon__card--1 {
  width: 300px;
  height: 390px;
  transform: rotate(-3deg) translateY(-20px);
}

.coming-soon__card--2 {
  width: 270px;
  height: 360px;
  transform: rotate(4deg) translateY(10px);
}

/* =============================================
   FAMILY
   ============================================= */
.family {
  width: 100%;
  border-bottom: 1px solid var(--color-border);
  background-color: #f0ebe4;
  color: var(--color-text);
  border-radius: var(--radius-outer);
  margin: 120px 0;
  overflow: hidden;
}

.family__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.family__left {
  padding: 32px 56px 80px 32px;
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.family__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.family__heading {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.family__heading em {
  font-style: normal;
}

.family__copy {
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 520px;
  text-wrap: pretty;
}

.family__link {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 8px 14px;
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.family__link:hover {
  color: var(--color-text);
  border-color: var(--color-text);
  gap: 12px;
}

/* ---- Family — Name Rotator (right) ---- */
.family__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.family__partners-label {
  position: absolute;
  top: 32px;
  left: 24px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.family__name-rotator {
  position: relative;
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.family__name {
  position: absolute;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: var(--color-text);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.family__name.is-active {
  opacity: 1;
  transform: translateY(0);
}

.family__name.is-exiting {
  opacity: 0;
  transform: translateY(-14px);
}

.family__right--video {
  padding: 0;
}

.family__right--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =============================================
   PRODUCTS
   ============================================= */
.products {
  width: 100%;
  border-radius: var(--radius-outer);
  overflow: hidden;
}

.products__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 24px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.products__separator {
  color: var(--color-text-muted);
}

.products__shop-all {
  transition: color var(--transition);
}

.products__shop-all:hover {
  color: var(--color-text-muted);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px 24px;
}

/* ---- Product Card ---- */
.product-card {
  display: flex;
  flex-direction: column;
  transition: opacity var(--transition);
  cursor: default;
}

/* Remove right border on last card in each row */
.product-card:nth-child(5n) {
}

.product-card:hover {
  opacity: 0.85;
}

.product-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: #fff;
  border-radius: var(--radius-card);
}

.product-card__image img,
.product-card__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img,
.product-card:hover .product-card__image video {
  transform: scale(1.02);
}

/* ---- Product Info ---- */
.product-card__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 4px 20px;
}

.product-card__details {
  display: flex;
  flex-direction: column-reverse;
  gap: 4px;
  width: 100%;
}

.product-card__variant {
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text);
  text-transform: none;
}

.product-card__price {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--color-text-muted);
  white-space: nowrap;
}


/* =============================================
   JOURNAL
   ============================================= */
.journal {
  border-bottom: 1px solid var(--color-border);
  padding-top: 120px;
  padding-bottom: 120px;
}

.journal__header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.journal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.journal-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--color-border);
  transition: background-color var(--transition);
}

.journal-card:last-child {
  border-right: none;
}

.journal-card:hover {
  background-color: rgba(0, 0, 0, 0.015);
}

.journal-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 12px;
  border-radius: var(--radius-card);
}

.journal-card__image img {
  transition: transform 0.6s ease;
}

.journal-card:hover .journal-card__image img {
  transform: scale(1.04);
}

.journal-card__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px 18px;
  border-top: 1px solid var(--color-border);
}

.journal-card__title {
  font-size: 12px;
  font-weight: 500;
}

.journal-card__date {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* =============================================
   OUR PROCESS
   ============================================= */
.process {
  background-color: #f0ebe4;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--radius-outer);
  margin: 120px 0;
  overflow: hidden;
}

.process__stitch,
.family__stitch,
.concierge__stitch {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.process__stitch-path,
.family__stitch-path,
.concierge__stitch-path {
  stroke: #1a1a1a;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 12 10;
  opacity: 0.18;
}

.process__grid,
.family__grid {
  position: relative;
  z-index: 1;
}

.concierge__top,
.concierge__bottom,
.concierge__footer {
  position: relative;
  z-index: 1;
}

.process__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.process__left {
  padding: 32px 60px 80px 60px;
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.process__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.process__heading {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.process__heading em {
  font-style: normal;
}

.process__copy {
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 400px;
  text-wrap: pretty;
}

.process__right {
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.process__gallery {
  display: flex;
  width: 100%;
}

.process__gallery-item {
  flex: 1;
  overflow: hidden;
  display: block;
}

.process__gallery-item img,
.process__gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .process__grid {
    grid-template-columns: 1fr;
  }
  .process__left {
    padding: 56px 24px;
    border-bottom: 1px solid var(--color-border);
  }
  .process__right {
    min-height: 280px;
  }
}

/* =============================================
   OFFICE / WO ZU FINDEN
   ============================================= */
.office {
  border-top: 1px dashed var(--color-border);
}

.office__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.office__left {
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.office__label {
  display: block;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.office__heading {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.office__heading em {
  font-style: normal;
}

.office__copy {
  font-family: var(--font-primary);
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 400px;
  margin-bottom: 32px;
  text-wrap: pretty;
}

.office__details {
  display: flex;
  gap: 48px;
}

.office__detail-label {
  display: block;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.office__detail-value {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
}

.office__right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.office__right img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

@media (max-width: 1024px) {
  .office__grid {
    grid-template-columns: 1fr;
  }
  .office__left {
    padding: 56px 24px;
  }
  .office__right {
    max-height: 400px;
  }
  .office__heading {
    font-size: 36px;
  }
  .office__details {
    flex-direction: column;
    gap: 20px;
  }
}

/* =============================================
   FLOATING CTA
   ============================================= */
.fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 26px;
  background: #d9ff4d;
  color: #1a1a1a;
  border: none;
  border-radius: var(--radius-card);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(217, 255, 77, 0.45), 0 2px 8px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  pointer-events: none;
}

.fab.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.fab:hover {
  background: #caff1f;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 36px rgba(217, 255, 77, 0.55), 0 2px 10px rgba(0, 0, 0, 0.15);
}

.fab svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* =============================================
   CONCIERGE
   ============================================= */
.concierge {
  position: relative;
  background: rgba(230, 226, 220, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #1a1a1a;
  border-radius: var(--radius-outer);
  margin: 120px 0;
  overflow: hidden;
}

.concierge::before,
.concierge::after {
  content: '';
  position: absolute;
  width: 140%;
  height: 200%;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: normal;
}

.concierge::before {
  background: radial-gradient(circle, rgba(215, 200, 180, 0.7) 0%, transparent 70%);
  top: -50%;
  left: -40%;
  animation: navBlobA 8s ease-in-out infinite;
}

.concierge::after {
  background: radial-gradient(circle, rgba(180, 200, 220, 0.7) 0%, transparent 70%);
  top: -50%;
  right: -40%;
  animation: navBlobB 10s ease-in-out infinite;
}

.concierge__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.concierge__top-left {
  padding: 80px 48px 72px;
  border-right: 1px dashed rgba(0, 0, 0, 0.08);
}

.concierge__video {
  width: 100%;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background-color: var(--color-border);
}

.concierge__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.concierge__top-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  min-height: 400px;
}

.concierge__timeline {
  display: none;
}

.concierge__video .concierge__step {
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.04em;
  gap: 8px;
}

.concierge__video .concierge__step-number {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  opacity: 1;
}

.concierge__video .concierge__step-name {
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.concierge__phase-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.concierge__step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  position: relative;
  cursor: default;
  z-index: 1;
  opacity: 0;
  transform: scale(0) rotate(10deg);
}

/* Phase colors */
.concierge__step[data-phase="1"] { background: transparent; border: 1px dashed rgba(0, 0, 0, 0.25); color: #1a1a1a; }
.concierge__step[data-phase="2"] { background: transparent; border: 1px dashed rgba(0, 0, 0, 0.25); color: #1a1a1a; }
.concierge__step[data-phase="3"] { background: transparent; border: 1px dashed rgba(0, 0, 0, 0.25); color: #1a1a1a; }

/* Plop in */
.concierge__step.is-in {
  animation: tagPlopIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Plop out */
.concierge__step.is-out {
  animation: tagPlopOut 0.2s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

@keyframes tagPlopIn {
  0% { opacity: 0; transform: scale(0) rotate(12deg); }
  60% { opacity: 1; transform: scale(1.12) rotate(-2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes tagPlopOut {
  0% { opacity: 1; transform: scale(1) rotate(0deg); }
  100% { opacity: 0; transform: scale(0) rotate(-12deg); }
}

.concierge__step:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  z-index: 5;
}

/* No connecting lines */
.concierge__step::after,
.concierge__step::before,
.concierge__needle {
  display: none;
}

.concierge__step-number {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.5;
  flex-shrink: 0;
}

.concierge__step[data-phase="3"] .concierge__step-number {
  color: var(--color-text-muted);
}

.concierge__step-content {
  display: none;
}

.concierge__step-name {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.concierge__step-desc {
  display: none;
}

.concierge__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.concierge__headline {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.concierge__headline em {
  font-style: normal;
}

.concierge__copy {
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 440px;
  margin-bottom: 36px;
  text-wrap: pretty;
}

.concierge__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--color-text);
  padding: 14px 32px;
  border-radius: var(--radius-card);
  transition: background 0.3s ease, transform 0.2s ease;
}

.concierge__cta:hover {
  background: #333;
  transform: translateY(-1px);
}

.concierge__cta--whatsapp {
  background: #25D366;
  color: #fff;
  margin-left: 12px;
}

.concierge__cta--whatsapp:hover {
  background: #1fb855;
}

.concierge__bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.concierge__detail {
  position: relative;
  z-index: 1;
  padding: 28px 48px;
  border-right: 1px dashed rgba(0, 0, 0, 0.08);
}

.concierge__detail:last-child {
  border-right: none;
}

.concierge__detail-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.concierge__detail-value {
  font-size: 18px;
  font-weight: 400;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.concierge__detail-value:hover {
  color: var(--color-text-muted);
}

.concierge__social {
  display: flex;
  gap: 16px;
}

.concierge__social a {
  font-size: 18px;
  font-weight: 400;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.concierge__social a:hover {
  color: var(--color-text-muted);
}

/* ---- Concierge inline footer ---- */
.concierge__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
  font-size: 11px;
  color: var(--color-text-muted);
  position: relative;
  z-index: 1;
}

.concierge__footer-links {
  display: flex;
  gap: 20px;
}

.concierge__footer-links a {
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.concierge__footer-links a:hover {
  color: #1a1a1a;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* ---- 13" laptops / medium screens ---- */
@media (max-width: 1440px) and (min-width: 1025px) {
  .hero {
    padding: 120px 40px 64px;
    gap: 56px;
  }

  .hero__main {
    gap: 32px;
  }

  .hero__headline,
  .services__heading,
  .showcase__heading,
  .trends__heading,
  .whoweare__heading,
  .family__heading,
  .process__heading,
  .office__heading,
  .concierge__headline {
    font-size: clamp(40px, 4.4vw, 64px);
  }

  .coming-soon__heading {
    font-size: clamp(48px, 6vw, 88px);
  }

  .hero__bar {
    gap: 20px;
  }

  .hero__bar-copy {
    font-size: 18px;
    max-width: 460px;
  }
}

@media (max-width: 1024px) {
  .header__left-link {
    display: none;
  }

  .header__menu-label {
    display: none;
  }

  .header__logo {
    position: static;
    transform: none;
    margin: 0 auto;
  }

  .header__inner {
    padding: 0 16px;
    min-width: 0;
    max-width: 100%;
    height: 60px;
  }

  .header__nav {
    display: none;
  }

  .header {
    padding: 10px 12px;
  }

  body {
    max-width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    overflow-x: clip;
  }

  .page-wrapper {
    overflow-x: clip;
  }

  .global-stitch {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .hero {
    padding: 100px 24px 60px;
  }

  .hero__stitch {
    display: none;
  }

  .hero__middle,
  .services__middle,
  .family__middle,
  .showcase__middle,
  .process__middle {
    display: none;
  }

  .hero__text {
    padding: 0;
  }

  .hero__main {
    flex-direction: column;
    gap: 40px;
  }

  .hero__right {
    justify-content: center;
  }

  .hero__card--1 {
    width: 160px;
    height: 200px;
  }

  .hero__card--2 {
    width: 140px;
    height: 180px;
  }

  .hero__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero__bar-line {
    width: 100%;
  }

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

  .services {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .services__left {
    border-bottom: 1px solid var(--color-border);
    padding: 40px 16px;
  }

  .services__copy {
    max-width: 100%;
  }

  .services__item {
    padding: 24px 16px;
  }

  .services__name {
    font-size: 22px;
  }

  .services__item-header {
    gap: 16px;
    padding: 20px 16px;
  }

  .services__subs-inner {
    padding: 0 16px 24px;
    padding-left: 16px;
  }

  .services__tag {
    font-size: 13px;
    padding: 10px 16px;
  }

  .services__list {
    max-width: 100%;
    overflow: hidden;
  }

  .showcase__right {
    width: 100%;
    margin-left: 0;
  }

  .products {
    width: 100%;
    margin-left: 0;
  }

  .full-image {
    width: 100%;
    margin-left: 0;
  }

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

  .showcase__left {
    border-bottom: 1px solid var(--color-border);
    padding: 40px 24px;
  }

  .showcase__image-rotator {
    aspect-ratio: 4 / 5;
  }

  .trends__full {
    padding: 40px 24px;
  }

  .products__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
    padding: 0 24px;
  }

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

  .journal-card {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .journal-card:last-child {
    border-bottom: none;
  }

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

  .family__left {
    padding: 60px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .family__heading {
    font-size: 32px;
  }

  .family__right {
    padding: 60px 20px;
    min-height: 240px;
  }

  .family__name {
    font-size: 36px;
  }

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

  .whoweare__left {
    padding: 60px 20px;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .whoweare__heading {
    font-size: 32px;
  }

  .whoweare__right {
    min-height: 300px;
  }
}

.intro-mobile {
  display: none;
}

@media (max-width: 600px) {
  /* Mobile-only Intro-Block */
  .intro-mobile {
    display: block;
    margin: 0 24px;
    padding: 24px 0 32px;
    border-top: 1px dashed var(--color-border);
  }

  .intro-mobile__copy {
    font-size: 19px;
    line-height: 1.45;
    color: var(--color-text-muted);
    text-wrap: pretty;
    margin: 0;
  }

  /* Anfrage-Modal: Fullscreen Wizard — Black Theme */
  .modal#inquiryModal .modal__dialog {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    background: #111111;
    color: #fff;
  }

  .modal#inquiryModal .modal__header {
    background: #111111;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  }

  .modal#inquiryModal .modal__title {
    color: #fff;
  }

  .modal#inquiryModal .modal__close {
    color: rgba(255, 255, 255, 0.7);
  }

  .modal#inquiryModal .modal__close:hover {
    color: #d9ff4d;
  }

  .modal#inquiryModal .modal__label {
    color: rgba(255, 255, 255, 0.75);
  }

  .modal#inquiryModal .modal__input,
  .modal#inquiryModal .modal__textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
  }

  .modal#inquiryModal .modal__input::placeholder,
  .modal#inquiryModal .modal__textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }

  .modal#inquiryModal .modal__input:focus,
  .modal#inquiryModal .modal__textarea:focus {
    border-color: #d9ff4d;
    background: rgba(217, 255, 77, 0.08);
  }

  .modal#inquiryModal .modal__chip {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
  }

  .modal#inquiryModal .modal__chip span {
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
  }

  .modal#inquiryModal .modal__chip span::before {
    border-color: rgba(255, 255, 255, 0.35);
  }

  .modal#inquiryModal .modal__chip input:checked + span {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
  }

  .modal#inquiryModal .modal__upload {
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.75);
  }

  .modal#inquiryModal .modal__upload-hint,
  .modal#inquiryModal .modal__upload-text {
    color: rgba(255, 255, 255, 0.65);
  }

  .modal#inquiryModal .modal__submit {
    background: #d9ff4d;
    color: #111;
  }

  .modal#inquiryModal .modal__wizard-nav {
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
  }

  .modal#inquiryModal .modal__wizard-back,
  .modal#inquiryModal .modal__wizard-next {
    background: #d9ff4d;
    color: #111;
  }

  .modal#inquiryModal .modal__wizard-progress {
    color: rgba(255, 255, 255, 0.55);
  }

  .modal#inquiryModal .modal__success-title {
    color: #fff;
  }

  .modal#inquiryModal .modal__success-copy {
    color: rgba(255, 255, 255, 0.7);
  }

  .modal#inquiryModal .modal__success-close {
    background: #d9ff4d;
    color: #111;
  }

  .modal#inquiryModal .modal__success-close:hover {
    background: #caff1f;
  }

  .modal#inquiryModal .modal__form {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .modal__form.is-wizard > .modal__row,
  .modal__form.is-wizard > .modal__field {
    display: none;
  }

  .modal__form.is-wizard > .is-active-step {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    gap: 10px;
  }

  .modal__form.is-wizard > .is-active-step.modal__row {
    display: grid;
    grid-template-columns: 1fr;
    flex: 0 0 auto;
    gap: 16px;
    align-content: start;
  }

  .modal__form.is-wizard > .is-active-step .modal__field {
    gap: 6px;
  }

  .modal__form.is-wizard > .modal__submit {
    display: none;
  }

  .modal__form.is-wizard .modal__label {
    font-size: 14px;
    font-weight: 500;
  }

  .modal__form.is-wizard .modal__wizard-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px dashed var(--color-border);
  }

  .modal__wizard-back,
  .modal__wizard-next {
    padding: 12px 20px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
  }

  .modal__wizard-back[disabled] {
    opacity: 0.25;
    pointer-events: none;
  }

  .modal__wizard-progress {
    font-size: 12px;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
  }

  .modal__quick {
    display: none;
  }

  /* Showcase: Collab-Bilder untereinander */
  .showcase__gallery {
    grid-template-columns: 1fr;
  }

  /* Dashed Divider nach erstem Video vor Services */
  .services::before {
    content: '';
    display: block;
    border-top: 1px dashed var(--color-border);
    margin: 0 24px;
  }

  /* Kontakt-Video: kompaktes Spacing */
  .concierge__top-right {
    padding: 8px 0;
    gap: 0;
    min-height: 0;
  }

  .concierge__video {
    border-radius: var(--radius-card);
    aspect-ratio: 16 / 10;
    flex: none;
  }

  /* Kontakt: Timeline-Bubbles ausblenden */
  .concierge__timeline {
    display: none;
  }

  /* FAB: nur Icon, kompakt */
  .fab {
    padding: 14px;
    gap: 0;
    bottom: 20px;
    right: 20px;
  }

  .fab span {
    display: none;
  }

  .fab svg {
    width: 20px;
    height: 20px;
  }

  /* Services: permanent offen, keine Animation */
  .services__subs {
    height: auto !important;
    overflow: visible;
    transition: none;
  }

  .services__item,
  .services__item-header,
  .services__tag,
  .services__toggle {
    transition: none !important;
  }

  .services__item-header {
    pointer-events: none;
    cursor: default;
  }

  .services__toggle {
    display: none;
  }

  .services__tag {
    opacity: 1 !important;
    transform: none !important;
  }

  :root {
    --header-h: 48px;
  }

  body {
    font-size: 12px;
  }

  .header__inner {
    padding: 0 12px;
    min-width: 0;
    max-width: 100%;
    height: 52px;
  }

  .header {
    padding: 8px 8px;
  }

  .header__nav {
    display: none;
  }

  .header__logo-img {
    height: 32px;
  }

  .hero {
    padding: 40px 16px 40px;
    min-height: auto;
    gap: 72px;
  }

  .hero__main {
    gap: 56px;
  }

  .hero__headline {
    font-size: 36px;
    text-align: left;
  }

  .hero__left {
    width: 100%;
    text-align: left;
  }

  .hero__card--1 {
    width: 185px;
    height: 240px;
  }

  .hero__card--2 {
    width: 155px;
    height: 205px;
  }

  .hero__bar-copy {
    max-width: 100%;
    flex-shrink: 1;
  }

  .services__left {
    padding: 32px 16px;
  }

  .services__heading {
    font-size: 28px;
  }

  .services__item {
    padding: 20px 16px;
  }

  .services__name {
    font-size: 20px;
  }

  .services__item-header {
    gap: 12px;
    padding: 20px 16px;
  }

  .services__number {
    font-size: 18px;
    min-width: 24px;
  }

  .services__subs-inner {
    padding: 0 16px 20px;
    padding-left: 16px;
  }

  .services__tag {
    font-size: 12px;
    padding: 8px 14px;
  }

  .showcase__left {
    padding: 32px 16px;
  }

  .showcase__heading {
    font-size: 28px;
  }

  .trends__full {
    padding: 32px 16px;
  }

  .trends__heading {
    font-size: 28px;
  }

  .family__left {
    padding: 48px 16px;
  }

  .family__heading {
    font-size: 30px;
  }

  .family__copy {
    font-size: 13px;
  }

  .family__right {
    padding: 48px 16px;
    min-height: 200px;
  }

  .family__name {
    font-size: 28px;
  }

  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
    padding: 0 16px;
  }

  .product-card__name {
    font-size: 15px;
  }


  .concierge {
    margin: 40px 0 0;
  }

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

  .concierge__top-left {
    padding: 48px 24px 40px;
    border-right: none;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .concierge__copy {
    margin-left: auto;
    margin-right: auto;
  }

  .concierge__cta {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
  }

  .concierge__cta--whatsapp {
    margin-left: 0;
    margin-top: 10px;
  }

  .concierge__top-right {
    padding: 32px 24px;
  }

  .concierge__timeline {
    flex-direction: column;
    gap: 20px;
  }

  .concierge__step {
    flex-direction: row;
    text-align: left;
    align-items: center;
    padding: 0;
    gap: 16px;
  }

  .concierge__step::after {
    display: none;
  }

  .concierge__step-content {
    gap: 2px;
  }

  .concierge__step-name {
    font-size: 16px;
  }

  .concierge__step-desc {
    font-size: 12px;
  }

  .concierge__step-number {
    width: 32px;
    height: 32px;
    font-size: 11px;
    flex-shrink: 0;
  }

  /* Hide all section subtexts and bar on mobile */
  .hero__bar,
  .hero__bar-copy,
  .services__copy,
  .showcase__copy,
  .trends__copy,
  .whoweare__copy,
  .coming-soon__copy,
  .family__copy,
  .process__copy,
  .concierge__copy {
    display: none;
  }

  .concierge__headline {
    font-size: 32px;
  }

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

  .concierge__detail {
    padding: 22px 24px;
    border-right: none;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  }

  .concierge__detail:last-child {
    border-bottom: none;
  }

  .concierge__detail-label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .concierge__detail-value {
    font-size: 18px;
    font-weight: 500;
  }

  .concierge__social {
    gap: 20px;
  }

  .concierge__social a {
    font-size: 18px;
    font-weight: 500;
  }

  .concierge__footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px 24px;
  }

  .modal__dialog {
    margin: 0;
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    box-shadow: none;
  }

  .modal__header {
    padding: 16px 16px;
    position: sticky;
    top: 0;
    background: var(--color-bg);
    z-index: 2;
  }

  .modal__title {
    font-size: 18px;
  }

  .modal__form {
    padding: 20px 16px 24px;
    gap: 16px;
  }

  .modal__form .modal__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .modal__submit {
    font-size: 16px;
    padding: 16px 24px;
  }

  .modal__quick {
    padding: 20px 16px 24px;
  }

  .modal__quick-links {
    flex-direction: column;
  }

  .modal__quick-link {
    justify-content: center;
  }

  .modal__input,
  .modal__textarea {
    font-size: 16px;
    padding: 12px 14px;
  }

  .modal__chip span {
    font-size: 13px;
    padding: 8px 16px;
  }

  .modal__chips {
    gap: 8px;
  }

  .modal__submit {
    font-size: 16px;
    padding: 16px 24px;
  }

  .modal__quick {
    padding: 20px 16px 24px;
  }

  .modal__quick-label {
    font-size: 13px;
  }

  .modal__quick-links {
    flex-direction: column;
    gap: 8px;
  }

  .modal__quick-link {
    justify-content: center;
    font-size: 13px;
    padding: 12px 20px;
  }

  .whoweare {
    margin: 40px 0;
  }

  .family {
    margin: 40px 0;
  }

  .coming-soon {
    min-height: 50vh;
    padding: 80px 16px;
  }
}

/* =============================================
   ANFRAGE MODAL
   ============================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal__dialog {
  position: relative;
  background: var(--color-bg);
  color: var(--color-text);
  width: 100%;
  max-width: 640px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.is-open .modal__dialog {
  transform: translateY(0) scale(1);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px dashed var(--color-border);
}

.modal__title {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text);
}

.modal__close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-text-muted);
  line-height: 1;
  padding: 0;
  transition: color 0.2s ease;
}

.modal__close:hover {
  color: var(--color-text);
}

.modal__form {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.modal__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal__label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.modal__input,
.modal__textarea {
  font-family: inherit;
  font-size: 16px;
  padding: 14px 18px;
  border: 1px dashed rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  background: rgba(230, 226, 220, 0.35);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal__input:focus,
.modal__textarea:focus {
  border-color: rgba(0, 0, 0, 0.4);
  box-shadow: none;
}

.modal__input::placeholder,
.modal__textarea::placeholder {
  color: var(--color-text-muted);
  font-size: 16px;
}

.modal__textarea {
  resize: vertical;
  min-height: 100px;
}

/* ---- Service Chips ---- */
.modal__success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 32px;
  gap: 16px;
  flex: 1;
}

.modal__success.is-visible {
  display: flex;
}

.modal__success-icon {
  color: #22c55e;
  margin-bottom: 8px;
}

.modal__success-icon svg {
  width: 64px;
  height: 64px;
}

.modal__success-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0;
}

.modal__success-copy {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 380px;
  margin: 0;
}

.modal__success-close {
  margin-top: 12px;
  padding: 12px 28px;
  background: var(--color-text);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal__success-close:hover {
  background: #333;
  transform: translateY(-1px);
}

.modal--success .modal__form,
.modal--success .modal__quick {
  display: none !important;
}

.modal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal__chip {
  cursor: pointer;
}

.modal__chip input {
  display: none;
}

.modal__chip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 10px 20px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  color: #1a1a1a;
  background: transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.modal__chip span::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: transparent url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M3 7.5l2.8 2.8L11 4.5" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center / 0 0 no-repeat;
  transition: background-color 0.2s ease, border-color 0.2s ease, background-size 0.2s ease;
  flex-shrink: 0;
}

.modal__chip span:hover {
  border-color: rgba(0, 0, 0, 0.3);
}

.modal__chip input:checked + span {
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
}

.modal__chip input:checked + span::before {
  background-color: #16a34a;
  border-color: #16a34a;
  background-size: 12px 12px;
}

/* ---- Upload Area ---- */
.modal__upload {
  position: relative;
  border: 1px dashed rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

.modal__upload:hover,
.modal__upload.is-dragover {
  border-color: rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.02);
}

.modal__upload-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.modal__upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 16px;
  pointer-events: none;
}

.modal__upload-icon {
  width: 28px;
  height: 28px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.modal__upload-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
}

.modal__upload-hint {
  font-size: 11px;
  color: var(--color-text-muted);
}

.modal__upload-files {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px;
}

.modal__upload-files:not(:empty) {
  padding: 0 16px 14px;
}

.modal__file-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  background: var(--color-surface);
  border-radius: 20px;
  color: var(--color-text-muted);
}

.modal__file-remove {
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  color: var(--color-text-muted);
  transition: color 0.15s ease;
}

.modal__file-remove:hover {
  color: #e74c3c;
}

/* ---- Submit Button ---- */
.modal__submit {
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 18px 36px;
  border: none;
  border-radius: 100px;
  background: var(--color-text);
  color: var(--color-bg);
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.modal__submit:hover {
  background: #333;
  transform: translateY(-1px);
}

.modal__submit:active {
  transform: translateY(0);
}

/* ---- Quick Contact ---- */
.modal__quick {
  margin-top: 24px;
  padding: 24px 32px 32px;
  border-top: 1px dashed var(--color-border);
  text-align: center;
}

.modal__quick-label {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.modal__quick-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.modal__quick-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px dashed var(--color-border);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal__quick-link:hover {
  background: var(--color-surface);
  transform: translateY(-1px);
}

.modal__quick-link--whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.modal__quick-link--whatsapp:hover {
  background: #1ebe5d;
}

/* ── Product Hover Popup ── */
.product-popup {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  max-width: 220px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.product-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.product-popup__label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.product-popup__label + .product-popup__label {
  margin-top: 10px;
}
.product-popup__options {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.product-popup__tag {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-surface);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
}
.product-popup__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* =============================================
   LEGAL MODALS (Datenschutz, AGB, Impressum)
   ============================================= */
.legal-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.legal-modal.is-open {
  display: flex;
}

.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.legal-modal__dialog {
  position: relative;
  background: var(--color-bg);
  border-radius: 16px;
  width: 90%;
  max-width: 640px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.legal-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px dashed var(--color-border);
  flex-shrink: 0;
}

.legal-modal__title {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text);
}

.legal-modal__close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-text-muted);
  line-height: 1;
  padding: 0;
}

.legal-modal__close:hover {
  color: var(--color-text);
}

.legal-modal__body {
  padding: 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.legal-modal__body h4 {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-modal__body h4:first-child {
  margin-top: 0;
}

.legal-modal__body p {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

@media (max-width: 600px) {
  .legal-modal__dialog {
    width: 95%;
    max-height: 85vh;
    border-radius: 12px;
  }
  .legal-modal__header {
    padding: 20px 20px;
  }
  .legal-modal__body {
    padding: 20px;
  }
  .legal-modal__title {
    font-size: 18px;
  }
}

/* =============================================
   SPECIAL ITEMS (Einzelstücke, Drops)
   ============================================= */
.special {
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--radius-outer);
  margin: 120px 0;
  overflow: hidden;
  background: var(--color-bg);
}

.special__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.special__left {
  padding: 32px 56px 80px 32px;
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.special__label {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.special__heading {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.2vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 28px;
}

.special__heading em {
  font-style: normal;
}

.special__heading-amp,
.special__card-amp {
  font-family: var(--font-primary);
  font-weight: 400;
}

.special__copy {
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 520px;
  text-wrap: pretty;
}

.special__right {
  padding: 32px;
  display: flex;
  align-items: center;
}

.special__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}

.special__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.special__card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.special__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.special__card:hover .special__card-image img {
  transform: scale(1.03);
}

/* ---- Special Items: Pattern-Repetition Icons ---- */
.special__icon {
  display: block;
  width: 100%;
  height: 100%;
  transition: filter 0.3s ease;
}

.special__card:hover .special__icon {
  filter: brightness(1.06);
}

/* Mug — Dampf */
.special__icon--mug .steam {
  opacity: 0;
  animation: steamRise 3.6s ease-in-out infinite;
  transform-origin: bottom center;
}
.special__icon--mug .steam--2 { animation-delay: 1.2s; }
.special__icon--mug .steam--3 { animation-delay: 2.4s; }

@keyframes steamRise {
  0% { opacity: 0; transform: translateY(4px) scale(0.9); }
  25% { opacity: 0.7; transform: translateY(0) scale(1); }
  75% { opacity: 0.5; transform: translateY(-6px) scale(1.05); }
  100% { opacity: 0; transform: translateY(-12px) scale(1.1); }
}

/* Box — öffnende Flaps */
.special__icon--box .box-flap {
  transform-origin: 50px 40px;
  animation: flapWiggle 4s ease-in-out infinite;
}

@keyframes flapWiggle {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-3px); opacity: 0.7; }
}

/* Print — schwebende Papiere */
.special__icon--print .paper {
  animation: paperFloat 4s ease-in-out infinite;
  transform-origin: center;
}
.special__icon--print .paper--1 { animation-delay: 0s; }
.special__icon--print .paper--2 { animation-delay: 0.4s; }
.special__icon--print .paper--3 { animation-delay: 0.8s; }

@keyframes paperFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(1.5px, -2px); }
}

/* Custom — pulsierender Stern */
.special__icon--custom .sparkle {
  transform-box: fill-box;
  transform-origin: center;
  animation: sparklePulse 2.4s ease-in-out infinite;
}
.special__icon--custom .sparkle--main { animation-delay: 0s; }
.special__icon--custom .sparkle--1 { animation-delay: 0.4s; }
.special__icon--custom .sparkle--2 { animation-delay: 0.8s; }

@keyframes sparklePulse {
  0%, 100% { opacity: 0.35; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .special__icon * {
    animation: none !important;
  }
}

.special__card-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.special__card-tag {
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.special__card-name {
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.4vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.special__card-meta {
  font-family: var(--font-primary);
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}

@media (max-width: 1280px) {
  .special__grid {
    grid-template-columns: 1fr;
  }

  .special__left {
    padding: 40px 24px;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .special__right {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .special__heading {
    font-size: 32px;
  }

  .special__copy {
    font-size: 15px;
  }

  .special__right {
    padding: 24px 16px;
  }

  .special__items {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .special__card-name {
    font-size: 26px;
  }
}

/* =============================================
   VIDEO LOADING STATES
   ============================================= */
.is-video-loading {
  background-color: rgba(26, 26, 26, 0.06);
}

.is-video-loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  border: 2px solid rgba(26, 26, 26, 0.2);
  border-top-color: rgba(26, 26, 26, 0.7);
  border-radius: 50%;
  animation: videoSpin 0.9s linear infinite;
  z-index: 3;
  pointer-events: none;
}

.is-video-loading::after {
  content: 'lädt …';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 28px);
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
  z-index: 3;
  pointer-events: none;
}

@keyframes videoSpin {
  to { transform: rotate(360deg); }
}

.is-video-loading video {
  opacity: 0;
  transition: opacity 0.4s ease 0.05s;
}

video {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.is-video-error::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.04);
}
