/* ===================== FONTS ===================== */
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jakarta';
  src: url('../fonts/jakarta-600.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Jakarta';
  src: url('../fonts/jakarta-700.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Jakarta';
  src: url('../fonts/jakarta-800.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}

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

:root {
  --gold: #c9a961;
  --gold-dim: rgba(201, 169, 97, 0.35);
  --gold-faint: rgba(201, 169, 97, 0.12);
  --white: #f5f1e8;
  --grey: #888;
  --grey-dark: #444;
  --bg: #050403;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Jakarta', system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
}

/* ===================== BACK LINK ===================== */
.back-link {
  position: fixed;
  top: 1.5rem;
  left: 2rem;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-dark);
  text-decoration: none;
  z-index: 50;
  transition: color 0.4s cubic-bezier(0.32,0.72,0,1);
  font-weight: 700;
}

.back-link:hover { color: var(--gold); }

/* ===================== SKIP LINK ===================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: #000;
  font-size: 0.75rem;
  text-decoration: none;
  font-weight: 400;
}

.skip-link:focus {
  top: 1rem;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 6vw 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: 8%;
  top: 10%;
  width: 55vw;
  height: 80vh;
  background: radial-gradient(ellipse at center, rgba(201,169,97,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-split,
.scroll-indicator {
  position: relative;
  z-index: 1;
}

.hero-split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
  gap: 5rem;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.hero-text {
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.2rem;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(4.5rem, 9vw, 8.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  line-height: 1.75;
  color: var(--grey);
  max-width: 420px;
  margin-bottom: 3.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0.9rem 0.9rem 2.2rem;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.6s cubic-bezier(0.32,0.72,0,1),
              color 0.6s cubic-bezier(0.32,0.72,0,1),
              border-color 0.6s cubic-bezier(0.32,0.72,0,1),
              box-shadow 0.6s cubic-bezier(0.32,0.72,0,1);
}

.hero-cta:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(201,169,97,0.18);
}

.hero-cta:active { transform: scale(0.98); }

.cta-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201,169,97,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.32,0.72,0,1), background 0.5s cubic-bezier(0.32,0.72,0,1);
}

.hero-cta:hover .cta-arrow {
  transform: translate(2px, -2px) scale(1.12);
  background: rgba(0,0,0,0.15);
}

.hero-portrait-wrap {
  opacity: 0;
  animation: fadeIn 1.4s ease 0.3s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.hero-portrait-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.hero-portrait-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold-dim);
  z-index: 2;
  pointer-events: none;
}

.hero-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) contrast(1.04);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}

.scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-dark);
}

.scroll-arrow {
  animation: bounce 2.2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ===================== SHARED ===================== */
.section-eyebrow {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(201, 169, 97, 0.25);
  background: #100e0c;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
}

.section-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
  margin: 2rem 0;
}

/* ===================== PERSÖNLICH ===================== */
.personal-section {
  padding: 9rem 6vw;
  border-top: 1px solid #111;
}

.personal-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.personal-left {
  position: sticky;
  top: 6rem;
}

.personal-img-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.personal-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4));
}

.personal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.88) contrast(1.05);
  display: block;
}

.personal-right {
  padding-top: 1rem;
}

.personal-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.personal-story {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.personal-story p {
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  line-height: 1.85;
  color: var(--grey);
}

.personal-quote {
  margin: 3.5rem 0;
  padding: 1rem 0 1rem 0;
  position: relative;
}

.personal-quote::before {
  content: '\201C';
  position: absolute;
  top: -2rem;
  left: -0.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 9rem;
  color: rgba(201, 169, 97, 0.1);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.personal-quote blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  line-height: 1.65;
  color: var(--white);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.personal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.badge {
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--gold-dim);
  background: #100e0c;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ===================== ANATOMIE INTRO ===================== */
.anatomie-intro {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  border-top: 1px solid #111;
}

.anatomie-intro-content {
  max-width: 680px;
}

.anatomie-intro-content .section-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1.5rem;
}

.anatomie-intro-content .section-divider {
  margin-left: auto;
  margin-right: auto;
}

.anatomie-intro-content .section-sub {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.75;
  color: var(--grey);
  margin-top: 1.5rem;
}

/* ===================== ANATOMIE SCROLL ===================== */
.scroll-driver {
  height: 300vh;
  position: relative;
}

.sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  overflow: hidden;
}

.video-container {
  position: relative;
  width: min(100vw, calc(100vh * 16 / 9));
  height: min(100vh, calc(100vw * 9 / 16));
  max-width: 100vw;
  max-height: 100vh;
}

#watchVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===================== LABELS ===================== */
.label {
  position: absolute;
  top: var(--top);
  pointer-events: none;
  opacity: 0;
}

.label-right {
  left: 56%;
  transform: translateY(-50%) translateX(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.label-left {
  right: 56%;
  transform: translateY(-50%) translateX(-14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.label.visible {
  opacity: 1;
}

.label-right.visible {
  transform: translateY(-50%) translateX(0);
}

.label-left.visible {
  transform: translateY(-50%) translateX(0);
}

.label-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.label-line {
  width: 52px;
  height: 1px;
  background: var(--gold-dim);
  position: relative;
  flex-shrink: 0;
}

.label-right .label-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.label-left .label-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.label-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.label-left .label-content {
  text-align: right;
}

.label-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.label-desc {
  font-family: 'Jakarta', sans-serif;
  font-weight: 300;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--grey);
  white-space: nowrap;
  text-transform: uppercase;
}

/* ===================== AKTUELLE STÜCKE ===================== */
.collection-section {
  padding: 9rem 6vw;
  border-top: 1px solid #111;
}

.collection-header {
  max-width: 1400px;
  margin: 0 auto 5rem;
}

.collection-header .section-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}

.collection-sub {
  font-size: clamp(0.88rem, 1.2vw, 0.98rem);
  color: var(--grey);
  max-width: 480px;
  margin-top: 0.5rem;
}

.collection-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.watch-card-shell {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 2px;
  transition: transform 0.6s cubic-bezier(0.32,0.72,0,1);
}

.watch-card-shell:hover {
  transform: translateY(-6px);
}

.watch-card {
  border: 1px solid rgba(201, 169, 97, 0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  transition: border-color 0.65s cubic-bezier(0.32,0.72,0,1),
              box-shadow 0.65s cubic-bezier(0.32,0.72,0,1);
  display: flex;
  flex-direction: column;
}

.watch-card-shell:hover .watch-card {
  border-color: var(--gold-dim);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 50px rgba(201,169,97,0.07);
}

.watch-card-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #050403;
}

.watch-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.32,0.72,0,1);
  filter: brightness(0.9);
}

.watch-card-shell:hover .watch-card-img img {
  transform: scale(1.05);
}

.watch-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.watch-ref {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 400;
}

.watch-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.2;
}

.watch-desc {
  font-size: 0.83rem;
  color: var(--grey);
  line-height: 1.7;
  margin-top: 0.3rem;
  flex: 1;
}

.watch-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid #111;
}

.watch-price {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-dark);
}

.watch-btn {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.55s cubic-bezier(0.32,0.72,0,1),
              color 0.55s cubic-bezier(0.32,0.72,0,1);
  white-space: nowrap;
}

.watch-btn:hover {
  background: var(--gold);
  color: #000;
}

.watch-btn:active { transform: scale(0.97); }

/* ===================== SUCHAUFTRAG ===================== */
.sourcing-section {
  padding: 6rem 6vw;
  border-top: 1px solid #111;
  background: linear-gradient(135deg, #080800 0%, #050403 60%);
}

.sourcing-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.sourcing-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
}

.sourcing-desc {
  font-size: clamp(0.88rem, 1.15vw, 1rem);
  color: var(--grey);
  line-height: 1.85;
  max-width: 600px;
}

.sourcing-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}

.sourcing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1rem 1rem 2.4rem;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.6s cubic-bezier(0.32,0.72,0,1),
              color 0.6s cubic-bezier(0.32,0.72,0,1),
              border-color 0.6s cubic-bezier(0.32,0.72,0,1),
              box-shadow 0.6s cubic-bezier(0.32,0.72,0,1);
}

.sourcing-cta:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 0 50px rgba(201, 169, 97, 0.18);
}

.sourcing-cta:hover .cta-arrow {
  transform: translate(2px, -2px) scale(1.12);
  background: rgba(0,0,0,0.15);
}

.sourcing-cta:active { transform: scale(0.98); }

.sourcing-note {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--grey-dark);
  text-align: center;
}

/* ===================== BERATUNG ===================== */
.process-section {
  padding: 9rem 6vw;
  border-top: 1px solid #111;
}

.process-header {
  max-width: 1400px;
  margin: 0 auto 5rem;
  text-align: center;
}

.process-header .section-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.process-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 3rem;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,97,0.5) 10%, rgba(201,169,97,0.5) 90%, transparent);
}


.process-step {
  padding: 0 2.5rem 0;
  text-align: center;
}

.process-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 4.5rem;
  color: rgba(201, 169, 97, 0.14);
  line-height: 1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.process-step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.9rem;
}

.process-step-desc {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.75;
  max-width: 260px;
  margin: 0 auto;
}

/* ===================== KONTAKT ===================== */
.kontakt-section {
  padding: 9rem 6vw;
  border-top: 1px solid #111;
}

.kontakt-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 7rem;
  align-items: center;
}

.kontakt-img-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.kontakt-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7) sepia(0.15) saturate(0.9);
}

.kontakt-headline {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 3rem;
}

.kontakt-details {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 2.5rem;
}

.kontakt-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.kontakt-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.kontakt-value {
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  color: var(--white);
  line-height: 1.55;
  text-decoration: none;
  transition: color 0.4s cubic-bezier(0.32,0.72,0,1);
}

a.kontakt-value:hover {
  color: var(--gold);
}

.kontakt-note {
  font-size: 0.8rem;
  color: var(--grey-dark);
  margin-bottom: 3rem;
  padding: 1rem 1.4rem;
  border-left: 1px solid var(--gold-dim);
  font-style: italic;
  line-height: 1.6;
}

.kontakt-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1rem 1rem 2.8rem;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.6s cubic-bezier(0.32,0.72,0,1),
              color 0.6s cubic-bezier(0.32,0.72,0,1),
              border-color 0.6s cubic-bezier(0.32,0.72,0,1),
              box-shadow 0.6s cubic-bezier(0.32,0.72,0,1);
}

.kontakt-cta:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 0 50px rgba(201, 169, 97, 0.18);
}

.kontakt-cta:hover .cta-arrow {
  transform: translate(2px, -2px) scale(1.12);
  background: rgba(0,0,0,0.15);
}

.kontakt-cta:active { transform: scale(0.98); }

/* ===================== FOOTER ===================== */
.site-footer {
  padding: 2.5rem 6vw;
  border-top: 1px solid #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-dark);
}

.footer-note {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--grey-dark);
}

.footer-link {
  color: var(--grey-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--grey);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .hero-split { gap: 3rem; }
  .personal-inner { gap: 4rem; }
  .kontakt-inner { gap: 4rem; }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 8rem;
    align-items: flex-start;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-portrait-wrap {
    order: -1;
    max-width: 340px;
    margin: 0 auto;
  }

  .hero-text { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }

  .personal-inner { grid-template-columns: 1fr; }
  .personal-left  { position: static; }
  .personal-img-wrap { aspect-ratio: 3 / 2; }

  .collection-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .process-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .process-grid::before { display: none; }
  .process-step { padding: 0 1rem 2.5rem; }

  .sourcing-inner { grid-template-columns: 1fr; }
  .sourcing-cta-wrap { align-items: flex-start; }

  .kontakt-inner { grid-template-columns: 1fr; }
  .kontakt-img-wrap { aspect-ratio: 16 / 9; }

  .site-footer { flex-direction: column; gap: 1rem; text-align: center; }

  .label-right { left: 54%; }
  .label-left  { right: 54%; }
  .label-name  { font-size: 0.8rem; }
  .label-desc  { font-size: 0.55rem; }
  .label-line  { width: 36px; }
}

@media (max-width: 480px) {
  .label-desc { display: none; }
  .label-line { width: 24px; }
}

/* ===================== SCROLL REVEALS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(5px);
  transition: opacity 0.95s cubic-bezier(0.32,0.72,0,1),
              transform 0.95s cubic-bezier(0.32,0.72,0,1),
              filter 0.95s cubic-bezier(0.32,0.72,0,1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.32s; }
