@font-face {
  font-family: "Abel";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/abel-latin.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --paper: #f4efe6;
  --paper-soft: #fffdf8;
  --ink: #17130f;
  --muted: #695f55;
  --line: rgba(38, 29, 20, 0.14);
  --gold: #b99a55;
  --copper: #9f4f2f;
  --blue: #1d4b5a;
  --green: #596f4f;
  --shadow: 0 24px 70px rgba(43, 31, 19, 0.16);
  --sans: "Abel", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  background:
    linear-gradient(90deg, rgba(23, 19, 15, 0.026) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(180deg, #fffefa 0%, var(--paper) 58%, #e9ddca 100%);
}

img { display: block; max-width: 100%; }
main, section, article, div { min-width: 0; }
main, section { max-width: 100vw; overflow-x: hidden; }
a { color: inherit; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: 50%;
  display: flex;
  width: min(1120px, calc(100% - 28px));
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 18px 54px rgba(39, 29, 19, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.brand img { width: 32px; height: 48px; object-fit: contain; }

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 420;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(167, 123, 56, 0.12);
  outline: none;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
}

.language-switch button {
  min-width: 34px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.language-switch button.is-active {
  color: #fffaf2;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(118px, 14vw, 180px) clamp(22px, 6vw, 76px) clamp(48px, 7vw, 88px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 36%, rgba(185, 154, 85, 0.2), transparent 34%),
    linear-gradient(135deg, #fffdf8 0%, #f5eee3 58%, #e8dcc8 100%);
}

.morphfield {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.morph-hero {
  display: block;
  min-height: 112svh;
  padding: 0;
}

.morph-hero .morphfield {
  position: sticky;
  top: 0;
  height: 100svh;
}

.morph-hero .hero-copy {
  position: sticky;
  top: 0;
  min-height: 100svh;
  margin-top: -100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(118px, 14vw, 180px) clamp(22px, 6vw, 76px) clamp(28px, 4vw, 52px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  overflow: hidden;
}

.eyebrow, .section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  overflow-wrap: normal;
}
h1 {
  max-width: 960px;
  margin-bottom: 12px;
  font-size: clamp(2.9rem, 8.55vw, 6.85rem);
}
h1 span { display: block; }
h2 { margin-bottom: 18px; font-size: clamp(2.35rem, 5.6vw, 5.2rem); }
h3 {
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}
p { overflow-wrap: break-word; }

.lead {
  max-width: 690px;
  color: #3f342b;
  font-size: clamp(1.24rem, 2.1vw, 1.62rem);
  line-height: 1.5;
}

.hero-actions { display: none; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
}
.button.primary { color: #fffaf2; border-color: #17130f; background: #17130f; }
.button.ghost { background: rgba(255, 253, 248, 0.62); }

.scroll-note {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 5vw, 70px);
  bottom: clamp(18px, 4vw, 48px);
  color: rgba(23, 19, 15, 0.46);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section-pad { padding: clamp(72px, 9vw, 132px) clamp(22px, 6vw, 76px); }

.statement { max-width: 1120px; }
.statement p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.7;
}

.domain-teasers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 74svh;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.teaser {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 640px;
  padding: clamp(24px, 4vw, 44px);
  overflow: hidden;
  color: #fffaf2;
  text-decoration: none;
  background: #17130f;
}

.teaser + .teaser { border-left: 1px solid rgba(255, 250, 242, 0.18); }
.teaser img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.54;
  filter: saturate(0.74);
  transition: transform 700ms ease, opacity 700ms ease;
}
.teaser::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 19, 15, 0.06), rgba(23, 19, 15, 0.78));
}
.teaser:hover img { transform: scale(1.04); opacity: 0.7; }
.teaser > div, .teaser-index { position: relative; z-index: 1; }
.teaser-index {
  position: absolute;
  top: 26px;
  left: 28px;
  color: rgba(255, 250, 242, 0.72);
  font-family: var(--sans);
  font-size: 4rem;
  line-height: 1;
}
.teaser p {
  margin-bottom: 12px;
  color: #d7bd7a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.teaser h2 { margin-bottom: 16px; font-size: clamp(2.2rem, 4vw, 4.8rem); }
.teaser span:last-child { display: block; max-width: 420px; color: rgba(255, 250, 242, 0.84); line-height: 1.55; }
.teaser-manufaktur { color: #17130f; background: #f7f1e8; }
.teaser-manufaktur img { opacity: 0.76; filter: contrast(1.04); }
.teaser-manufaktur::after { background: linear-gradient(180deg, rgba(247, 241, 232, 0.2), rgba(247, 241, 232, 0.9)); }
.teaser-manufaktur .teaser-index { color: rgba(23, 19, 15, 0.42); }
.teaser-manufaktur p { color: var(--gold); }
.teaser-manufaktur span:last-child { color: #4d4035; }

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  background: #fffaf2;
}
.portrait {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-copy p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}
blockquote {
  margin: 30px 0 0;
  padding: 0 0 0 22px;
  border-left: 2px solid var(--gold);
  color: #2f271f;
  font-family: var(--sans);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.16;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  border-top: 1px solid var(--line);
}
.contact p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}
.contact-card, .contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow);
}

.contact-form {
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.88);
  font: inherit;
  font-size: 1.05rem;
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(185, 154, 85, 0.86);
  outline: 2px solid rgba(185, 154, 85, 0.16);
}

.form-extra {
  position: absolute;
  left: -9999px;
}

.form-note, .form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.form-status {
  padding: 11px 13px;
  border: 1px solid rgba(89, 111, 79, 0.24);
  border-radius: 8px;
  color: #314128;
  background: rgba(89, 111, 79, 0.1);
}

.form-status.is-error {
  border-color: rgba(159, 79, 47, 0.24);
  color: #6e301e;
  background: rgba(159, 79, 47, 0.1);
}
.contact-card a {
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 780;
  text-decoration: none;
}
.contact-card p { margin: 4px 0 0; font-size: 1rem; }

.site-footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  color: rgba(255, 250, 242, 0.72);
  background: #17130f;
  font-size: 0.92rem;
}

.legal-main {
  padding-top: 128px;
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
}

.legal-page h1 {
  margin-bottom: 34px;
  font-size: clamp(2.95rem, 7.2vw, 6.3rem);
}

.legal-copy {
  display: grid;
  gap: 28px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.legal-copy h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.legal-copy p {
  max-width: 760px;
  margin: 0;
}

.legal-copy a {
  color: var(--blue);
  font-weight: 760;
  text-decoration: none;
}

.page-hero {
  min-height: 92svh;
  padding: clamp(128px, 13vw, 190px) clamp(22px, 6vw, 76px) clamp(62px, 8vw, 112px);
  background: linear-gradient(135deg, #fffaf2, #e9dcc9);
}
.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
}
.split-hero h1 { font-size: clamp(3.6rem, 8.1vw, 7.4rem); }
.image-panel, .drawing-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #d7c8b5;
}
.image-panel.tall { aspect-ratio: 4 / 5; }
.image-panel img { width: 100%; height: 100%; object-fit: cover; }
.hero-duo {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 14px;
  align-items: end;
}
.hero-duo .image-panel:first-child {
  transform: translateY(34px);
}
.drawing-panel {
  padding: 18px;
  background: #fbfaf7;
}
.drawing-panel img { width: 100%; height: auto; mix-blend-mode: multiply; }
.technical-hero {
  background:
    linear-gradient(90deg, rgba(23, 19, 15, 0.04) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(135deg, #fbfaf7, #e5ddd2);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(28px, 6vw, 86px);
}
.detail-grid p, .long-copy p, .process-strip p, .art-cards p, .technical-layout p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}
.quiet-card, .spec-card {
  align-self: start;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow);
}
.check-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: #3f342b;
  line-height: 1.55;
}
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 14px;
  height: 1px;
  background: var(--copper);
}

.process-strip, .technical-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: clamp(56px, 7vw, 108px) clamp(22px, 6vw, 76px);
  background: #182f36;
  color: #fffaf2;
}
.process-strip .section-kicker, .technical-layout .section-kicker { color: #dbb878; }
.process-strip p, .technical-layout p { color: rgba(255, 250, 242, 0.78); }
.process-strip figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}
.process-strip img { width: 100%; height: min(72svh, 720px); object-fit: cover; }
figcaption {
  padding: 14px 16px;
  color: rgba(255, 250, 242, 0.8);
  background: rgba(23, 19, 15, 0.82);
  font-size: 0.88rem;
}

.repair-steps {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  background: #fffaf2;
}
.repair-steps > div:first-child p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.step-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #17130f;
  box-shadow: 0 12px 34px rgba(43, 31, 19, 0.12);
}
.step-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.step-grid figcaption {
  padding: 10px 12px;
  color: rgba(255, 250, 242, 0.86);
  font-size: 0.78rem;
}

.manufaktur-hero-photos {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 14px;
  align-items: end;
}
.manufaktur-hero-photos figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #f7f1e8;
  box-shadow: var(--shadow);
}
.manufaktur-hero-photos figure:first-child {
  transform: translateY(42px);
}
.manufaktur-hero-photos img {
  width: 100%;
  height: min(62svh, 620px);
  object-fit: cover;
}

.technical-layout {
  grid-template-columns: minmax(0, 1fr);
  background: #f3ede3;
  color: var(--ink);
}
.technical-layout > img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: left top;
  border-radius: 8px;
  box-shadow: var(--shadow);
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(135deg, #000 0%, #000 46%, rgba(0, 0, 0, 0.72) 62%, transparent 92%);
  mask-image: linear-gradient(135deg, #000 0%, #000 46%, rgba(0, 0, 0, 0.72) 62%, transparent 92%);
}
.technical-layout p { color: var(--muted); }

.before-after {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) repeat(2, minmax(220px, 0.7fr));
  gap: clamp(18px, 3vw, 34px);
  align-items: end;
  background: #fffaf2;
}
.before-after figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #17130f;
}
.before-after img {
  width: 100%;
  height: min(58svh, 560px);
  object-fit: cover;
}
.part-model {
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
  align-items: center;
}
.part-model-copy p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}
.part-model-figure img {
  height: min(62svh, 620px);
  object-fit: cover;
  object-position: center;
}

.art-hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  padding: clamp(128px, 13vw, 190px) clamp(22px, 6vw, 76px) clamp(62px, 8vw, 112px);
  color: #fffaf2;
  background: #17130f;
}
.art-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(0.92);
}
.art-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 19, 15, 0.84) 0%, rgba(23, 19, 15, 0.58) 42%, rgba(23, 19, 15, 0.08) 100%);
}
.art-hero > div { position: relative; z-index: 1; max-width: 900px; }
.art-hero h1 { max-width: 760px; }
.art-hero .lead { color: rgba(255, 250, 242, 0.88); }

.art-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  background: #fffaf2;
}
.long-copy p { max-width: 820px; }
.art-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.art-cards article {
  min-height: 420px;
  padding: clamp(28px, 5vw, 54px);
  background: #f1e7d6;
}
.art-cards h2 {
  max-width: 11ch;
  font-size: clamp(2.35rem, 3.15vw, 3.95rem);
  line-height: 1.08;
  letter-spacing: 0.045em;
  text-wrap: balance;
}
.art-cards article:nth-child(2) { background: #eef1e7; }
.art-cards article:nth-child(3) { background: #fffaf2; }
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.gallery img {
  width: 100%;
  height: clamp(280px, 34vw, 560px);
  object-fit: cover;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(42px, 6vw, 78px) clamp(22px, 6vw, 76px);
  background: #fffaf2;
}
.cta-band h2 { margin: 0; font-size: clamp(2.2rem, 5vw, 4.4rem); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .header-tools { margin-left: auto; }
  .domain-teasers, .about, .contact, .split-hero, .detail-grid, .process-strip, .technical-layout, .art-copy, .repair-steps, .before-after {
    grid-template-columns: 1fr;
  }
  .domain-teasers { min-height: auto; }
  .teaser { min-height: 520px; }
  .teaser + .teaser { border-left: 0; border-top: 1px solid rgba(255, 250, 242, 0.18); }
  .art-cards, .gallery { grid-template-columns: 1fr 1fr; }
  .step-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .brand span { font-size: 0.95rem; }
  .hero { min-height: 100svh; padding-top: 112px; padding-bottom: 40px; }
  .morph-hero { min-height: 108svh; padding-top: 56px; }
  .morph-hero .morphfield { height: 100vh; }
  .morph-hero .hero-copy {
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: 44px;
  }
  .morph-hero h1 { margin-bottom: 430px; }
  h1 { font-size: clamp(2.48rem, 13vw, 3.4rem); }
  .split-hero h1 { font-size: clamp(2.88rem, 16.2vw, 4.7rem); }
  .art-hero h1 { font-size: clamp(2.7rem, 12.6vw, 4rem); }
  .eyebrow, .section-kicker { letter-spacing: 0.16em; }
  .morph-hero .hero-actions { display: none; }
  .hero-actions, .cta-band, .site-footer { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .teaser { min-height: 470px; }
  .art-cards, .gallery { grid-template-columns: 1fr; }
  .gallery img { height: 340px; }
  .scroll-note { display: none; }
  .hero-duo, .manufaktur-hero-photos, .step-grid { grid-template-columns: 1fr; }
  .hero-duo .image-panel:first-child,
  .manufaktur-hero-photos figure:first-child {
    transform: none;
  }
}

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