/* ============ TOKENS ============ */
:root {
  --white: #FFFFFF;
  --cream: #F7F4EF;
  --cream-deep: #F1ECE3;
  --beige: #E8DFD3;
  --charcoal: #1A1A1A;
  --charcoal-soft: #2A2A2A;
  --taupe: #8B7D6B;
  --taupe-light: #B8AC9B;
  --hairline: rgba(26, 26, 26, 0.12);

  --serif: 'Cormorant Garamond', 'Hoefler Text', Georgia, serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --script: 'Caveat', 'Snell Roundhand', cursive;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 48px;
  --space-6: 96px;
  --space-7: 160px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --slow: 1.2s;

  --container: 1440px;
  --gutter: clamp(24px, 5vw, 80px);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(15px, 1vw + 0.5rem, 17px);
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--charcoal); color: var(--cream); }

/* ============ TYPOGRAPHY ============ */
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.display--xxl { font-size: clamp(56px, 11vw, 180px); }
.display--xl  { font-size: clamp(44px, 7.5vw, 120px); }
.display--lg  { font-size: clamp(36px, 5.5vw, 84px); }
.display--md  { font-size: clamp(28px, 3.6vw, 56px); }

.display em { font-style: italic; font-weight: 400; color: var(--taupe); }
.display .script {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 0.26em;
  color: rgba(255,255,255,0.82);
  display: block;
  margin-top: 0.5em;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--taupe);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--taupe);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-2px);
}

.lead {
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--charcoal-soft);
  max-width: 38ch;
}

.body-lg { font-size: clamp(16px, 1.05vw, 18px); line-height: 1.75; color: var(--charcoal-soft); }
.small { font-size: 13px; line-height: 1.6; color: var(--taupe); }

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
section.tight { padding: clamp(60px, 8vw, 120px) 0; }

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--slow) var(--ease), padding var(--slow) var(--ease), border-color var(--slow) var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px var(--gutter);
  border-bottom: 1px solid var(--hairline);
}
.header.scrolled .logo, .header.scrolled .nav a, .header.scrolled .menu-btn { color: var(--charcoal); }

.logo {
  display: block;
  line-height: 0;
  margin-left: clamp(24px, 4vw, 72px);
}
.logo-img {
  height: 216px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: height var(--slow) var(--ease), filter var(--slow) var(--ease);
}
.header.scrolled .logo-img {
  height: 56px;
  filter: none;
}
.header.scrolled .logo {
  margin-left: 0;
}
.footer .logo {
  margin-left: 0;
}
.footer .logo-img {
  height: 110px;
  filter: none;
}

/* Compact header variant for subpages (starts "scrolled" on load) */
.header.compact {
  padding: 16px var(--gutter);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hairline);
}
.header.compact .logo, .header.compact .nav a, .header.compact .menu-btn { color: var(--charcoal); }
.header.compact .logo { margin-left: 0; }
.header.compact .logo-img { height: 56px; filter: none; }

.nav {
  display: flex;
  gap: clamp(20px, 2.6vw, 44px);
  align-items: center;
}
.nav a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--white);
  transition: color var(--slow) var(--ease), opacity 0.3s ease;
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.5s var(--ease);
}
.nav a:hover::after { width: 100%; }
.nav a:hover { opacity: 0.7; }
.nav a.current { color: var(--taupe); }
.nav a.current::after { width: 100%; background: var(--taupe); }

.menu-btn {
  display: none;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color var(--slow) var(--ease);
}
.menu-btn span {
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  margin: 5px 0;
  transition: transform 0.4s var(--ease), opacity 0.4s ease;
}

@media (max-width: 880px) {
  .nav { display: none; }
  .menu-btn { display: block; }
}

/* Mobile overlay menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease);
}
.menu-overlay.open { opacity: 1; pointer-events: all; }
.menu-overlay a {
  font-family: var(--serif);
  font-size: clamp(36px, 7vw, 64px);
  color: var(--charcoal);
  font-weight: 400;
}
.menu-overlay .close {
  position: absolute;
  top: 30px;
  right: var(--gutter);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  width: 100%;
  overflow: hidden;
  padding: 0;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: grayscale(15%) contrast(1.05);
  transform: scale(1.05);
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.0) 50%, rgba(0,0,0,0.4) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter) clamp(60px, 10vh, 120px);
  z-index: 2;
  color: var(--white);
}
.hero-content .display {
  color: var(--white);
  max-width: 14ch;
  animation: fadeUp 1.6s var(--ease) 0.4s both;
}
.hero-content .display em { color: rgba(255,255,255,0.78); }
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 40px;
  gap: 40px;
  animation: fadeUp 1.6s var(--ease) 0.9s both;
}
.hero-meta .eyebrow { color: rgba(255,255,255,0.85); }
.hero-meta .eyebrow::before { background: rgba(255,255,255,0.85); }
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--white);
  animation: fadeUp 1.6s var(--ease) 1.4s both;
  pointer-events: none;
}
.hero-scroll .label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero-scroll .arrow {
  width: 8px;
  height: 8px;
  border-right: 1px solid rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.9);
  transform: rotate(45deg);
  animation: scrollArrow 2.2s ease-in-out infinite;
}
@keyframes scrollArrow {
  0%, 100% { transform: rotate(45deg) translate(-3px, -3px); opacity: 0.45; }
  50%      { transform: rotate(45deg) translate(3px, 3px);   opacity: 1; }
}
@media (max-width: 720px) {
  .hero-scroll { bottom: 24px; gap: 10px; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sub-page hero (shorter, focused on category) */
.hero--sub { height: 72vh; min-height: 520px; }
.hero--sub .hero-content { justify-content: flex-end; padding-bottom: clamp(48px, 8vh, 96px); }
.hero--sub .display { max-width: 18ch; }
.hero--sub::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.55) 100%);
}
.hero-breadcrumb {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  animation: fadeUp 1.2s var(--ease) 0.2s both;
}
.hero-breadcrumb a { color: inherit; transition: color 0.3s ease; }
.hero-breadcrumb a:hover { color: var(--white); }
.hero-breadcrumb .sep { margin: 0 10px; opacity: 0.6; }
.hero--sub .lead {
  color: rgba(255,255,255,0.88);
  max-width: 48ch;
  margin-top: 28px;
  animation: fadeUp 1.6s var(--ease) 0.9s both;
}

/* ============ INTRO / ÜBER MICH ============ */
.intro { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}
.intro-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1.4s var(--ease);
}
.intro-image:hover img { transform: scale(1.03); }
.intro-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border-top: 1px solid var(--taupe);
  border-left: 1px solid var(--taupe);
  z-index: 2;
}
.intro-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-bottom: 1px solid var(--taupe);
  border-right: 1px solid var(--taupe);
  z-index: 2;
}
.intro-text { padding-top: clamp(20px, 5vw, 60px); }
.intro-text .display { margin: 24px 0 40px; }
.intro-text p { margin-bottom: 24px; max-width: 50ch; }
.signature {
  font-family: var(--script);
  font-size: 42px;
  color: var(--taupe);
  margin-top: 40px;
  transform: rotate(-3deg);
  display: inline-block;
}

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

/* ============ MARQUEE ============ */
.marquee {
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  background: var(--cream);
}
.marquee-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--serif);
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}
.marquee-inner span { font-style: italic; color: var(--taupe-light); padding: 0 14px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 720px) {
  .marquee { padding: 18px 0; }
  .marquee-inner { font-size: 13px; gap: 28px; animation-duration: 38s; }
  .marquee-inner span { padding: 0 8px; }
}

/* ============ TEASER GRID ============ */
.teaser { background: var(--white); padding-top: clamp(80px, 10vw, 140px); padding-bottom: clamp(60px, 8vw, 100px); }
.teaser-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 30px;
}
.teaser-head .display { max-width: 12ch; }
.teaser-head a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--charcoal);
  transition: gap 0.4s var(--ease), letter-spacing 0.4s var(--ease);
}
.teaser-head a:hover { letter-spacing: 0.28em; }

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.teaser-grid figure { overflow: hidden; }
.teaser-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform 1.6s var(--ease), filter 1s ease;
}
.teaser-grid figure:hover img {
  transform: scale(1.04);
  filter: grayscale(0);
}
.t1 { grid-column: 1 / span 5; aspect-ratio: 4 / 5; }
.t2 { grid-column: 6 / span 4; aspect-ratio: 3 / 4; margin-top: 80px; }
.t3 { grid-column: 10 / span 3; aspect-ratio: 3 / 4; }
.t4 { grid-column: 2 / span 4; aspect-ratio: 4 / 5; margin-top: 60px; }
.t5 { grid-column: 7 / span 5; aspect-ratio: 4 / 5; }

@media (max-width: 880px) {
  .teaser-grid { gap: 16px; }
  .t1, .t2, .t3, .t4, .t5 { grid-column: 1 / -1; margin-top: 0; aspect-ratio: 4 / 5; }
}

/* ============ GALERIE (KATEGORIEN) ============ */
.gallery { background: var(--cream); }
.gallery-head { text-align: center; margin-bottom: 80px; }
.gallery-head .eyebrow { display: inline-block; }
.gallery-head .display { margin-top: 20px; }
.gallery-head .display em { display: block; }
.gallery-head .lead { margin: 32px auto 0; }

.categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.2vw, 32px);
}
.cat-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}
.cat-card .cat-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(15%) brightness(0.92);
  transition: transform 1.6s var(--ease), filter 1s ease;
}
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.72) 100%);
  transition: background 0.6s ease;
}
.cat-card:hover .cat-img { transform: scale(1.04); filter: grayscale(0) brightness(1); }
.cat-card:hover::after { background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.1) 45%, rgba(0,0,0,0.78) 100%); }

.cat-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(24px, 3.5vw, 48px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cat-body .eyebrow { color: rgba(255,255,255,0.8); }
.cat-body .eyebrow::before { background: rgba(255,255,255,0.8); }
.cat-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.05;
  color: var(--white);
}
.cat-body p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.1vw, 18px);
  color: rgba(255,255,255,0.82);
  max-width: 34ch;
}
.cat-link {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  align-self: flex-start;
  transition: letter-spacing 0.4s var(--ease), border-color 0.4s ease;
}
.cat-card:hover .cat-link { letter-spacing: 0.34em; border-bottom-color: var(--white); }

@media (max-width: 720px) {
  .categories { grid-template-columns: 1fr; }
  .cat-card { aspect-ratio: 4 / 5; }
}

/* ============ PAGE INTRO (for category pages) ============ */
.page-intro {
  background: var(--white);
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
}
.page-intro .inner { max-width: 760px; margin: 0 auto; }
.page-intro .eyebrow { display: inline-block; margin-bottom: 28px; }
.page-intro .display { margin-bottom: 32px; }
.page-intro p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.6;
  color: var(--charcoal-soft);
  margin-bottom: 20px;
}
.page-intro p:last-child { margin-bottom: 0; }
.page-intro .rule {
  width: 48px;
  height: 1px;
  background: var(--taupe);
  margin: 0 auto 40px;
}

/* ============ MASONRY (category galleries) ============ */
.gallery-section { background: var(--cream); padding: clamp(60px, 8vw, 120px) 0; }
.masonry {
  column-count: 3;
  column-gap: clamp(16px, 1.8vw, 28px);
}
.masonry figure {
  break-inside: avoid;
  margin-bottom: clamp(16px, 1.8vw, 28px);
  overflow: hidden;
  position: relative;
  background: var(--cream-deep);
  cursor: zoom-in;
}
.masonry img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(12%);
  transition: transform 1.4s var(--ease), filter 1s ease;
}
.masonry figure:hover img {
  transform: scale(1.03);
  filter: grayscale(0);
}
.masonry figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 24px 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--white);
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 100%);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease);
}
.masonry figure:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 880px) { .masonry { column-count: 2; } }
@media (max-width: 540px) { .masonry { column-count: 1; } }

/* ============ EDITORIAL BREAK (pull quote between images) ============ */
.editorial-break {
  background: var(--cream);
  padding: clamp(60px, 9vw, 140px) 0;
  text-align: center;
}
.editorial-break .inner { max-width: 900px; margin: 0 auto; padding: 0 var(--gutter); }
.editorial-break blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.3;
  color: var(--charcoal);
}
.editorial-break blockquote::before {
  content: '“';
  font-family: var(--serif);
  font-size: 96px;
  line-height: 0.4;
  color: var(--beige);
  display: block;
  margin-bottom: 24px;
}
.editorial-break cite {
  display: block;
  margin-top: 32px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ============ RELATED CATEGORIES (bottom of subpages) ============ */
.related { background: var(--white); padding: clamp(80px, 10vw, 140px) 0; }
.related-head { text-align: center; margin-bottom: 60px; }
.related-head .eyebrow { display: inline-block; }
.related-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.05;
  margin-top: 20px;
  color: var(--charcoal);
}
.related-head h3 em { font-style: italic; color: var(--taupe); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
}
.related-grid .cat-card { aspect-ratio: 3 / 4; }
.related-grid .cat-body h3 { font-size: clamp(22px, 2.2vw, 32px); }
.related-grid .cat-body p { display: none; }
@media (max-width: 880px) {
  .related-grid { grid-template-columns: 1fr; }
  .related-grid .cat-card { aspect-ratio: 4 / 5; }
}

/* ============ CTA STRIP (bottom of subpages) ============ */
.cta-strip {
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
}
.cta-strip .eyebrow { color: var(--taupe-light); display: inline-block; }
.cta-strip .eyebrow::before { background: var(--taupe-light); }
.cta-strip h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.08;
  margin: 24px auto 28px;
  color: var(--cream);
  max-width: 22ch;
}
.cta-strip h2 em { font-style: italic; color: var(--taupe-light); }
.cta-strip p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.4vw, 22px);
  color: rgba(247,244,239,0.82);
  max-width: 44ch;
  margin: 0 auto 48px;
}
.cta-btn {
  display: inline-block;
  padding: 20px 48px;
  border: 1px solid var(--cream);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  transition: background 0.5s var(--ease), color 0.5s var(--ease), letter-spacing 0.5s var(--ease);
}
.cta-btn:hover {
  background: var(--cream);
  color: var(--charcoal);
  letter-spacing: 0.4em;
}

/* ============ KUNDENSTIMMEN ============ */
.testimonials { background: var(--white); }
.testimonials .container { max-width: 1100px; }
.testimonial {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: clamp(60px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--hairline);
}
.testimonial:last-child { border-bottom: none; }
.testimonial:nth-child(even) { direction: rtl; }
.testimonial:nth-child(even) > * { direction: ltr; }
.testimonial-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%);
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1.35;
  font-weight: 400;
  color: var(--charcoal);
  font-style: italic;
}
.testimonial-quote::before {
  content: '“';
  font-family: var(--serif);
  font-size: 120px;
  line-height: 0.5;
  color: var(--beige);
  display: block;
  margin-bottom: 20px;
}
.testimonial-meta {
  margin-top: 32px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
}
.testimonial-meta strong { color: var(--charcoal); font-weight: 500; }

@media (max-width: 880px) {
  .testimonial { grid-template-columns: 1fr; }
  .testimonial:nth-child(even) { direction: ltr; }
}

/* ============ PREISE ============ */
.pricing { background: var(--cream); }
.pricing-head { text-align: center; margin-bottom: 100px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.pricing-card {
  padding: 60px 40px;
  border-right: 1px solid var(--hairline);
  transition: background 0.6s ease;
}
.pricing-card:last-child { border-right: none; }
.pricing-card:hover { background: var(--white); }
.pricing-card .eyebrow { display: block; margin-bottom: 32px; }
.pricing-card h3 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.pricing-card .from {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--taupe);
  margin-bottom: 36px;
}
.pricing-card .price {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--charcoal);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.pricing-card hr {
  border: none;
  border-top: 1px solid var(--hairline);
  margin: 36px 0 28px;
}
.pricing-card ul { list-style: none; }
.pricing-card li {
  font-size: 14px;
  line-height: 1.7;
  padding: 10px 0;
  color: var(--charcoal-soft);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pricing-card li:last-child { border-bottom: none; }
.pricing-card li::before {
  content: '◦';
  color: var(--taupe);
  font-size: 14px;
  flex-shrink: 0;
  transform: translateY(2px);
}

.pricing-foot {
  text-align: center;
  margin-top: 60px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--taupe);
  font-size: 18px;
}

@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { border-right: none; border-bottom: 1px solid var(--hairline); }
  .pricing-card:last-child { border-bottom: none; }
}

/* ============ KONTAKT ============ */
.contact { background: var(--charcoal); color: var(--cream); padding: clamp(80px, 12vw, 160px) 0; }
.contact .eyebrow { color: var(--taupe-light); }
.contact .eyebrow::before { background: var(--taupe-light); }
.contact .display { color: var(--cream); }
.contact .display em { color: var(--taupe-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
  margin-top: 80px;
}
.contact-text p {
  color: rgba(247, 244, 239, 0.78);
  max-width: 38ch;
  margin-bottom: 24px;
}
.contact-text .small { color: var(--taupe-light); margin-top: 40px; display: block; }
.contact-text .channel {
  display: block;
  margin-top: 20px;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--cream);
  transition: color 0.4s ease;
}
.contact-text .channel:hover { color: var(--taupe-light); }

.contact-form {
  display: grid;
  gap: 28px;
}
.field { position: relative; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--taupe-light);
  margin-bottom: 10px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(247, 244, 239, 0.25);
  padding: 12px 0 16px;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--cream);
  transition: border-color 0.4s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--cream);
}
.field select {
  font-family: var(--serif);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'12'%20height%3D'8'%20viewBox%3D'0%200%2012%208'%3E%3Cpath%20fill%3D'none'%20stroke%3D'%23B8AC9B'%20stroke-width%3D'1'%20d%3D'M1%201l5%205%205-5'%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.field select option { background: var(--charcoal); color: var(--cream); }
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.submit {
  margin-top: 20px;
  padding: 22px 0;
  background: transparent;
  border: 1px solid var(--cream);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  transition: background 0.5s var(--ease), color 0.5s var(--ease), letter-spacing 0.5s var(--ease);
}
.submit:hover {
  background: var(--cream);
  color: var(--charcoal);
  letter-spacing: 0.4em;
}

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

/* ============ FOOTER ============ */
.footer { background: var(--cream); padding: 80px 0 40px; color: var(--charcoal); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  padding-bottom: 60px;
  border-bottom: 1px solid var(--hairline);
}
.footer .logo { color: var(--charcoal); }
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--charcoal-soft);
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--taupe); }
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--taupe);
  margin-top: 20px;
  max-width: 28ch;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 12px;
  color: var(--taupe);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { margin-left: 20px; }

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

/* ============ COOKIE BANNER ============ */
.cookie {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 460px;
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 24px 28px;
  z-index: 90;
  box-shadow: 0 20px 60px rgba(26,26,26,0.08);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s var(--ease);
}
.cookie.show { transform: translateY(0); opacity: 1; }
.cookie p {
  font-size: 13px;
  color: var(--charcoal-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}
.cookie button {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid var(--charcoal);
  margin-right: 8px;
  transition: all 0.3s ease;
}
.cookie button.primary { background: var(--charcoal); color: var(--cream); }
.cookie button:hover { opacity: 0.8; }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.96);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px;
  flex-direction: column;
}
.lightbox.open { display: flex; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: 92vw;
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid rgba(247,244,239,0.3);
  transition: all 0.3s ease;
}
.lightbox-close:hover { background: var(--cream); color: var(--charcoal); }
.lightbox-counter {
  margin-top: 24px;
  color: var(--taupe-light);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cream);
  font-size: 28px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247,244,239,0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.lightbox-nav:hover { background: var(--cream); color: var(--charcoal); }
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }
@media (max-width: 720px) {
  .lightbox { padding: 20px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

/* ============ SCROLL REVEALS ============ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1.2s var(--ease), transform 1.2s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

/* ============ UTILITY ============ */
.center { text-align: center; }
