/* Ferella Interiors — Editorial stylesheet */

:root {
  --bg: #F5F2ED;
  --bg-bone: #EAE4D8;
  --bg-charcoal: #2A2722;
  --ink: #1A1A1A;
  --ink-soft: #3a3733;
  --muted: #6e6a63;
  --hairline: #c9c2b6;
  --hairline-soft: rgba(26, 26, 26, 0.14);
  --accent: #A88968;
  --accent-deep: #8a6f52;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color .35s ease, opacity .35s ease; }
a:hover { color: var(--accent); }

.serif {
  font-family: 'Cormorant Garamond', 'Times New Roman', Times, serif;
  font-weight: 300;
  letter-spacing: 0.005em;
}

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

.wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

/* ────────────── NAV ────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 48px;
  transition: background-color .5s ease, backdrop-filter .5s ease, padding .4s ease, border-color .5s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(245, 242, 237, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding: 14px 48px;
  border-bottom-color: var(--hairline-soft);
}

.nav.on-dark {
  color: #f3eee5;
}
.nav.on-dark.scrolled {
  background: rgba(42, 39, 34, 0.78);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 13px;
}
.nav__brand {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .5s ease, transform .5s ease, visibility 0s linear .5s;
  pointer-events: none;
}
.nav__brand img { width: 44px; height: 44px; }
.nav.brand-visible .nav__brand {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity .5s ease, transform .5s ease, visibility 0s linear 0s;
}
.nav.brand-visible .nav__brand img { opacity: .92; }

.nav__menu {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav__menu a {
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.45);
  position: relative;
  padding-bottom: 4px;
  transition: color .35s ease, text-shadow .35s ease;
}
.nav.scrolled .nav__menu a {
  color: var(--ink);
  text-shadow: none;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s cubic-bezier(.7,0,.2,1);
}
.nav__menu a:hover::after,
.nav__menu a.active::after { transform: scaleX(1); transform-origin: left; }
.nav__menu a.active { color: var(--accent); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px; height: 24px;
  position: relative;
  color: inherit;
}
.nav__toggle span {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transition: transform .4s ease, opacity .3s ease, top .4s ease;
}
.nav__toggle span:nth-child(1) { top: 6px; }
.nav__toggle span:nth-child(2) { top: 17px; }
.nav__toggle.open span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.nav__toggle.open span:nth-child(2) { top: 12px; transform: rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }
.nav-overlay ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.nav-overlay a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 36px;
  letter-spacing: 0.04em;
}

/* ────────────── HERO ────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  background: var(--bg-charcoal);
}
.hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroIn 1.8s ease-out forwards;
}
@keyframes heroIn { to { transform: scale(1); } }
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #f5f1ea;
  text-align: center;
  padding: 0 24px;
}
.hero__logo { width: 160px; height: 160px; opacity: .92; margin-bottom: 44px; }
.hero__wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: clamp(28px, 4.4vw, 56px);
  margin-left: 0.42em;
}
.hero__claim {
  margin-top: 26px;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: .82;
}
.hero__hairline {
  width: 1px; height: 56px;
  background: rgba(245,241,234,.55);
  margin: 36px auto 0;
}
.scroll-ind {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245,241,234,.7);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scroll-ind__line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(245,241,234,.7));
  position: relative;
  overflow: hidden;
}
.scroll-ind__line::before {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, #f5f1ea);
  animation: scrollDot 2.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* ────────────── REVEAL ────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease-out, transform .9s ease-out;
}
.reveal.in { opacity: 1; transform: none; }

/* ────────────── SECTIONS ────────────── */
section { position: relative; }

.section {
  padding: clamp(80px, 14vh, 180px) 48px;
}
.section--tight { padding: clamp(60px, 10vh, 120px) 48px; }

.section--dark {
  background: var(--bg-charcoal);
  color: #ece6db;
}
.section--dark .eyebrow { color: rgba(236,230,219,.55); }
.section--dark .hairline { background: rgba(236,230,219,.18); }

.container { max-width: 1320px; margin: 0 auto; }
.container--narrow { max-width: 880px; margin: 0 auto; }

.hairline {
  height: 1px;
  background: var(--hairline-soft);
  width: 100%;
}

/* Manifesto pull-quote */
.manifest {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.manifest__eyebrow { margin-bottom: 56px; }
.manifest__text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.65;
  letter-spacing: 0.005em;
  color: var(--ink);
}
.manifest__text em { font-style: italic; color: var(--accent-deep); }
.manifest__sig {
  margin-top: 56px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Section header */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 64px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hairline-soft);
}
.section-head__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.005em;
}
.section-head__meta {
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

/* Asymmetric mosaic */
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 24px;
}
.mosaic__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #ddd6c7;
}
.mosaic__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.mosaic__item:hover img { transform: scale(1.045); }
.mosaic__item .caption {
  position: absolute;
  left: 24px; bottom: 22px;
  color: #f5f1ea;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
  text-shadow: 0 1px 18px rgba(0,0,0,.5);
}
.mosaic__item .caption span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-top: 6px;
  font-style: italic;
}
.mosaic__item:hover .caption { opacity: 1; transform: none; }
.mosaic__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.45));
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.mosaic__item:hover::after { opacity: 1; }

.mosaic__item--lg { grid-column: span 7; grid-row: span 4; }
.mosaic__item--md { grid-column: span 5; grid-row: span 2; }
.mosaic__item--sm { grid-column: span 5; grid-row: span 2; }

/* Services list */
.services {
  display: grid;
  grid-template-columns: 1fr;
}
.services__item {
  display: grid;
  grid-template-columns: 80px 1fr auto 100px;
  gap: 32px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--hairline-soft);
  cursor: pointer;
  transition: padding .5s ease;
}
.services__item:first-child { border-top: 1px solid var(--hairline-soft); }
.services__item:hover { padding-left: 24px; }
.services__num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.services__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  transition: color .4s ease;
}
.services__item:hover .services__title { color: var(--accent); }
.services__tag {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.services__arrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--ink);
  text-align: right;
  transition: transform .5s cubic-bezier(.7,0,.2,1), color .4s ease;
}
.services__item:hover .services__arrow { transform: translateX(8px); color: var(--accent); }

/* Outro CTA */
.outro {
  text-align: center;
}
.outro__eyebrow { margin-bottom: 36px; }
.outro__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin-bottom: 48px;
  font-style: italic;
}
.outro__email {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.04em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  font-style: italic;
}

/* Footer */
.footer {
  background: var(--bg-charcoal);
  color: #cdc6b9;
  padding: 64px 48px 32px;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.footer__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(236,230,219,.12);
}
.footer__brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 16px;
  color: #ece6db;
}
.footer__col h5 {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(236,230,219,.55);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 10px; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  font-size: 11px;
  color: rgba(236,230,219,.5);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ────────────── GALERIE ────────────── */
.page-hero {
  padding: 200px 48px 80px;
  border-bottom: 1px solid var(--hairline-soft);
}
.page-hero__eyebrow { margin-bottom: 28px; }
.page-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.page-hero__title em { font-style: italic; color: var(--accent-deep); }
.page-hero__sub {
  margin-top: 36px;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.filters {
  display: flex;
  gap: 36px;
  padding: 36px 48px;
  border-bottom: 1px solid var(--hairline-soft);
  align-items: center;
}
.filters__label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 16px;
}
.filter-btn {
  background: none; border: none;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 4px 0;
  position: relative;
  transition: color .3s ease;
}
.filter-btn::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.7,0,.2,1);
}
.filter-btn.active::after,
.filter-btn:hover::after { transform: scaleX(1); }
.filter-btn.active { color: var(--ink); }
.filter-counter {
  margin-left: auto;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

.masonry {
  column-count: 3;
  column-gap: 24px;
  padding: 48px;
}
.masonry__item {
  break-inside: avoid;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: #ddd6c7;
  transition: opacity .5s ease, transform .5s ease;
}
.masonry__item img {
  width: 100%;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.masonry__item:hover img { transform: scale(1.04); }
.masonry__item.hidden { display: none; }
.masonry__item .caption {
  position: absolute;
  left: 22px; bottom: 18px; right: 22px;
  color: #f5f1ea;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
}
.masonry__item .caption .tag {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: .8;
}
.masonry__item .caption .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  margin-top: 4px;
}
.masonry__item:hover .caption { opacity: 1; transform: none; }
.masonry__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.55));
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.masonry__item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,18,15,.96);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 88vw;
  max-height: 84vh;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox__caption {
  position: absolute;
  bottom: 36px;
  left: 50%; transform: translateX(-50%);
  color: #ece6db;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: none;
  border: 1px solid rgba(236,230,219,.3);
  color: #ece6db;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  transition: border-color .3s ease, color .3s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { border-color: var(--accent); color: var(--accent); }
.lightbox__close { top: 32px; right: 36px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 36px; }
.lightbox__nav--next { right: 36px; }

/* ────────────── ABOUT ────────────── */
.about {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
  padding: 0 48px;
  max-width: 1320px;
  margin: 0 auto;
}
.about__media {
  position: sticky;
  top: 120px;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__body {
  padding-top: 24px;
}
.about__eyebrow { margin-bottom: 36px; }
.about__name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.005em;
  margin-bottom: 8px;
}
.about__role {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 56px;
}
.about__text { font-size: 16px; line-height: 1.85; max-width: 600px; color: var(--ink-soft); }
.about__text p { margin-bottom: 24px; }
.about__text p:first-child::first-letter {
  font-family: 'Cormorant Garamond', serif;
  float: left;
  font-size: 88px;
  line-height: .85;
  font-style: italic;
  padding: 8px 14px 0 0;
  color: var(--accent-deep);
  font-weight: 300;
}
.about__quote {
  margin-top: 80px;
  padding: 48px 0;
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}
.about__quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.4;
}
.about__quote cite {
  display: block;
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--muted);
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 0 48px;
  max-width: 1320px;
  margin: 120px auto 0;
}
.facts__item {
  border-top: 1px solid var(--hairline-soft);
  padding-top: 24px;
}
.facts__num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  margin-bottom: 16px;
}
.facts__num em { font-style: italic; color: var(--accent); }
.facts__label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ────────────── LEISTUNGEN ────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.split__left {
  padding: 200px 64px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split__right {
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}
.split__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.005em;
  margin-bottom: 40px;
}
.split__title em { font-style: italic; color: var(--accent-deep); }
.split__intro {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 64px;
}

.numbered {
  list-style: none;
  border-top: 1px solid var(--hairline-soft);
}
.numbered li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline-soft);
  align-items: baseline;
  transition: padding-left .4s ease;
  cursor: default;
}
.numbered li:hover { padding-left: 16px; }
.numbered li:hover .numbered__name { color: var(--accent); }
.numbered__num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
}
.numbered__name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(22px, 2.2vw, 28px);
  transition: color .4s ease;
}
.numbered__name span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}
.process__step {
  padding: 56px 32px;
  border-right: 1px solid var(--hairline-soft);
  position: relative;
}
.process__step:last-child { border-right: none; }
.process__num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.process__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.process__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

/* ────────────── KOOPERATIONEN ────────────── */
.logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline-soft);
  border-left: 1px solid var(--hairline-soft);
  margin-top: 64px;
}
.logos__item {
  border-right: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  aspect-ratio: 5/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  transition: color .4s ease, background-color .4s ease;
  cursor: default;
}
.logos__item:hover { color: var(--accent); }
.logos__item span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 500;
}

/* ────────────── KONTAKT ────────────── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 80px);
}
.contact__left {
  padding: 180px 64px 80px;
  background: var(--bg-bone);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact__right {
  padding: 180px 64px 80px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.005em;
  margin-bottom: 64px;
}
.contact__title em { font-style: italic; color: var(--accent-deep); }
.contact__list { list-style: none; }
.contact__list li { margin-bottom: 36px; }
.contact__list .label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact__list .value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.4;
}
.contact__hours {
  margin-top: 48px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.form {
  max-width: 520px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form__field {
  margin-bottom: 32px;
  position: relative;
}
.form__field label {
  position: absolute;
  top: 14px;
  left: 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
  pointer-events: none;
  transition: top .3s ease, font-size .3s ease, color .3s ease, letter-spacing .3s ease;
}
.form__field input,
.form__field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--hairline-soft);
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 14px 0 10px;
  outline: none;
  transition: border-color .3s ease;
}
.form__field input:focus,
.form__field textarea:focus { border-bottom-color: var(--accent); }
.form__field input:focus + label,
.form__field input:not(:placeholder-shown) + label,
.form__field textarea:focus + label,
.form__field textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}
.form__field textarea { resize: vertical; min-height: 120px; }
.form__submit {
  margin-top: 16px;
  background: none;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 18px 36px;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .4s ease, color .4s ease, border-color .4s ease;
}
.form__submit:hover {
  background: var(--ink);
  color: var(--bg);
}
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 24px;
}
.form__check input {
  margin-top: 4px;
  accent-color: var(--accent);
}

.form__success {
  background: var(--bg-charcoal);
  color: #ece6db;
  padding: 48px;
  border-radius: 4px;
  text-align: center;
  display: none;
}
.form__success.show { display: block; }
.form__success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 32px;
  margin-bottom: 12px;
}

/* ────────────── RESPONSIVE ────────────── */
@media (max-width: 960px) {
  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav__menu { display: none; }
  .nav__toggle { display: block; }
  .section { padding: 80px 24px; }
  .page-hero { padding: 140px 24px 56px; }
  .filters { padding: 24px; flex-wrap: wrap; gap: 18px; }
  .masonry { column-count: 2; padding: 24px; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic__item--lg, .mosaic__item--md, .mosaic__item--sm {
    grid-column: span 1; grid-row: auto; min-height: 320px;
  }
  .about { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .about__media { position: relative; top: 0; }
  .facts { grid-template-columns: repeat(2, 1fr); padding: 0 24px; gap: 24px; }
  .split { grid-template-columns: 1fr; }
  .split__left { padding: 140px 24px 60px; }
  .split__right { min-height: 60vh; }
  .process { grid-template-columns: 1fr 1fr; }
  .process__step { border-right: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft); }
  .process__step:nth-child(2n) { border-right: none; }
  .logos { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; }
  .contact__left, .contact__right { padding: 120px 24px 60px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .footer__row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services__item { grid-template-columns: 40px 1fr 60px; }
  .services__item .services__tag { display: none; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-head__meta { text-align: left; }
}

@media (max-width: 560px) {
  .footer__row { grid-template-columns: 1fr; }
  .nav-overlay a { font-size: 28px; }
  .hero__logo { width: 112px; height: 112px; margin-bottom: 28px; }
}
