
@font-face { font-family: "Playfair Display"; src: url("../fonts/playfair-display-latin.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Playfair Display"; src: url("../fonts/playfair-display-italic-latin.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "Playfair Display"; src: url("../fonts/playfair-display-medium-latin.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Geist"; src: url("../fonts/geist-latin.woff2") format("woff2"); font-weight: 300 700; font-style: normal; font-display: swap; }

:root {
  --c-bg:          #0d0d0d;  --c-bg-2:        #151515;  --c-dark:        #0d0d0d;  --c-dark-2:      #1a1a1a;
  --c-ink:         #ffffff;  --c-ink-soft:    rgba(255, 255, 255, .7);  --c-ink-faint:   rgba(255, 255, 255, .5);  --c-cream:       #ffffff;  --c-cream-soft:  rgba(255, 255, 255, .7);  --c-brass:       #897643;  --c-brass-2:     #897643;  --c-brass-deco:  #897643;  --c-line:        rgba(255, 255, 255, .12);  --c-line-dark:   rgba(255, 255, 255, .12);  --c-card:        #141414;
  --f-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --f-sans:  "Geist", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --fs-xs:   .78rem;
  --fs-sm:   .9rem;
  --fs-base: 1.0625rem;
  --fs-md:   clamp(1.075rem, .98rem + .45vw, 1.375rem);  --fs-lg:   clamp(1.375rem, 1.15rem + 1vw, 1.875rem);  --fs-xl:   clamp(2rem, 1.4rem + 2.7vw, 4rem);  --fs-2xl:  clamp(2.25rem, 1.35rem + 4vw, 4.5rem);
  --space-section: clamp(4.5rem, 3rem + 7vw, 9rem);
  --container: 1240px;
  --pad-inline: clamp(1.25rem, .5rem + 3.5vw, 5rem);  --container-narrow: 820px;
  --radius: 10px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  font-family: var(--f-sans);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
:where(ul[class]:not(.prose), .footer-col ul) { list-style: none; padding: 0; }
:focus-visible {
  outline: 2px solid var(--c-brass);
  outline-offset: 3px;
  border-radius: var(--radius);
}

h1, h2, h3, h4 { font-family: var(--f-serif); font-weight: 500; line-height: 1.1; letter-spacing: -.01em; }
h1 { font-size: var(--fs-2xl); }
h2 { font-size: var(--fs-xl); }
h3 { font-size: var(--fs-lg); }
p { max-width: 68ch; }
strong { font-weight: 600; }

.eyebrow {
  font-family: var(--f-sans);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-brass);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: .7;
}
.lead { font-size: var(--fs-md); color: var(--c-ink-soft); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, .5rem + 3vw, 3rem);
}
.section { padding-block: var(--space-section); }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5rem); }
.section--dark { background: var(--c-dark); color: var(--c-cream); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--c-cream); }
.section--dark .lead { color: var(--c-cream-soft); }
.section--alt { background: var(--c-bg-2); }

.grid { display: grid; gap: clamp(1.5rem, 1rem + 2vw, 3rem); }
.section-head { max-width: var(--container-narrow); margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem); }
.section-head h2 { margin-top: .7rem; }
.text-center { text-align: center; }
.text-center .eyebrow { justify-content: center; }
.text-center .section-head { margin-inline: auto; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--c-dark);
  color: var(--c-cream);
  padding: .75rem 1.25rem;
  border-radius: var(--radius);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--f-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .95em 1.8em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--c-cream); color: var(--c-dark); }
.btn--primary:hover { background: var(--c-brass); color: var(--c-dark); }
.btn--ghost { border-color: var(--c-line); color: var(--c-ink); }
.btn--ghost:hover { border-color: var(--c-ink); background: var(--c-ink); color: var(--c-bg); }
.section--dark .btn--ghost { border-color: var(--c-line-dark); color: var(--c-cream); }
.section--dark .btn--ghost:hover { background: var(--c-cream); color: var(--c-dark); border-color: var(--c-cream); }
.btn__arrow { transition: transform .3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-brass);
  transition: gap .3s var(--ease);
}
.link-arrow__t { border-bottom: 1px solid transparent; padding-bottom: 2px; transition: border-color .3s var(--ease); }
.link-arrow:hover { gap: .9em; }
.link-arrow:hover .link-arrow__t { border-color: currentColor; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #000;
  border-bottom: 1px solid #151515;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 80px;}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 24px; width: auto; display: block; }
.footer-brand .brand img { height: 34px; }

.nav-menu { flex: 1; display: flex; align-items: center; gap: 1.5rem; }
.nav-list { display: flex; align-items: center; gap: clamp(1.1rem, .5rem + 1.6vw, 2.3rem); list-style: none; margin-inline: auto; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: .4em;
  font-size: var(--fs-sm); font-weight: 450; letter-spacing: .02em;
  color: var(--c-cream-soft); padding: .4em 0;
  transition: color .25s var(--ease);
}
.nav-link:hover, .nav-link:focus-visible,
.nav-item:hover .nav-link, .nav-item:focus-within .nav-link,
.nav-link[aria-current="page"] { color: var(--c-cream); }
.nav-link[aria-current="page"] { color: var(--c-brass-2); }
.nav-caret { width: .6em; height: .6em; transition: transform .3s var(--ease); }
.nav-item:hover .nav-caret, .nav-item:focus-within .nav-caret,
.nav-top[aria-expanded="true"] .nav-caret { transform: rotate(180deg); }

.dropdown {
  list-style: none;
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 220px; padding: .6rem;
  background: var(--c-dark-2);border: 1px solid var(--c-line-dark); border-radius: 6px;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,.7);
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.nav-item:focus-within > .dropdown,
.dropdown.is-open { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
@media (hover: hover) and (min-width: 941px) {
  .nav-item:hover > .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
}
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }.dropdown a {
  display: block; padding: .6rem .85rem; border-radius: 4px;
  font-size: var(--fs-sm); color: var(--c-cream-soft);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.dropdown a:hover, .dropdown a:focus-visible { background: rgba(255,255,255,.06); color: var(--c-cream); }

.nav-item--dd { display: inline-flex; align-items: center; gap: .1em; }
.nav-caret-btn { display: inline-flex; align-items: center; padding: .4em .2em; color: var(--c-cream-soft); }
.nav-caret-btn:hover { color: var(--c-cream); }
.nav-caret-btn .nav-caret { width: .6em; height: .6em; transition: transform .3s var(--ease); }
.nav-item--dd:hover .nav-caret, .nav-item--dd:focus-within .nav-caret,
.nav-caret-btn[aria-expanded="true"] .nav-caret { transform: rotate(180deg); }

.nav-actions { display: flex; align-items: center; gap: 1.1rem; }
.btn--sm { padding: .7em 1.4em; font-size: var(--fs-xs); }
.site-header .btn--ghost { border-color: rgba(244,241,234,.32); color: var(--c-cream); }
.site-header .btn--ghost:hover { background: var(--c-cream); color: var(--c-dark); border-color: var(--c-cream); }
.lang-switch { display: inline-flex; gap: .4em; font-size: var(--fs-xs); font-weight: 500; letter-spacing: .1em; color: var(--c-cream-soft); }
.lang-switch a:hover { color: var(--c-cream); }
.lang-switch a[aria-current] { color: var(--c-cream); text-decoration: underline; text-underline-offset: 3px; }

.nav-toggle { display: none; }
.nav-legal { display: none; }

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; width: 44px; height: 44px; margin-left: auto;
  }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--c-cream); transition: transform .3s var(--ease), opacity .2s var(--ease); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-menu {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #0d0d0d; border-bottom: 1px solid var(--c-line-dark);
    padding: 1rem clamp(1.25rem, .5rem + 3vw, 3rem) 2rem;
    max-height: calc(100dvh - 72px); overflow-y: auto;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  }
  .nav-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; margin: 0; }
  .nav-item { width: 100%; border-bottom: 1px solid var(--c-line-dark); }
  .nav-link { padding: 1rem 0; font-size: 1.1rem; justify-content: space-between; width: 100%; }
  .nav-item--dd { flex-wrap: wrap; align-items: center; }
  .nav-item--dd .nav-link { flex: 1; width: auto; }
  .nav-item--dd .nav-caret-btn { padding: 1rem .25rem 1rem 1rem; }
  .nav-item--dd .dropdown { flex-basis: 100%; }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    min-width: 0; padding: 0 0 .75rem .75rem; background: none; border: 0; box-shadow: none;
    display: none;
  }
  .dropdown.is-open { display: block; transform: none; }
  .dropdown a { padding: .55rem 0; }
  .nav-actions { margin-top: 1.5rem; flex-direction: column; align-items: stretch; gap: 1.1rem; width: 100%; }
  .nav-actions .btn { width: 100%; justify-content: center; }
  .nav-legal { display: flex; flex-direction: column; width: 100%; border-top: 1px solid var(--c-line-dark); padding-top: 1rem; }
  .nav-legal a { padding: .5rem 0; font-size: 1rem; color: var(--c-cream-soft); }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--c-cream);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,8,6,.35) 0%, rgba(10,8,6,.25) 45%, rgba(10,8,6,.85) 100%);
}
.hero__inner { padding-block: clamp(3rem, 2rem + 6vw, 6rem); width: 100%; }
.hero h1 { color: #fff; max-width: 16ch; margin-block: .4em .5em; }
.hero .lead { color: rgba(255,255,255,.82); max-width: 46ch; }
.hero__eyebrow { color: var(--c-brass-2); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }
.hero .btn--primary { background: var(--c-cream); color: var(--c-dark); }
.hero .btn--primary:hover { background: var(--c-brass); color: var(--c-dark); }
.hero .btn--ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.hero .btn--ghost:hover { background: #fff; color: var(--c-dark); border-color: #fff; }

.marquee {
  border-block: 1px solid var(--c-line);
  padding-block: 1.1rem;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 32s linear infinite;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--c-ink-soft);
}
.marquee__track span { display: inline-flex; align-items: center; gap: 3rem; }
.marquee__track span::after { content: "◆"; color: var(--c-brass); font-size: .6em; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

.split { display: grid; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; } .split--reverse .split__media { order: 2; } }
.split__media img { width: 100%; border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; }
.split__body > * + * { margin-top: 1.25rem; }

.cards { display: grid; gap: clamp(1.25rem, .5rem + 2vw, 2rem); }
@media (min-width: 720px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -30px rgba(20,17,13,.5); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: clamp(1.4rem, 1rem + 1vw, 2rem); display: flex; flex-direction: column; gap: .8rem; flex: 1; }
.card__num { font-size: var(--fs-xs); letter-spacing: .2em; color: var(--c-brass); font-weight: 600; }
.card h3 { font-size: clamp(1.35rem, 1.15rem + .8vw, 1.7rem); overflow-wrap: break-word; hyphens: auto; }
.card p { font-size: var(--fs-sm); color: var(--c-ink-soft); }
.card .link-arrow { margin-top: auto; }

.projects { display: grid; gap: clamp(1.25rem, .5rem + 2vw, 1.75rem); }
@media (min-width: 760px) { .projects--3 { grid-template-columns: repeat(3, 1fr); } }
.project {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.project img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); z-index: -2; }
.project::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,8,6,0) 40%, rgba(10,8,6,.82) 100%); }
.project:hover img { transform: scale(1.06); }
.project__caption { position: absolute; left: 0; bottom: 0; padding: clamp(1.25rem, 1rem + 1vw, 1.9rem); width: 100%; }
.project__caption .meta { font-size: var(--fs-xs); letter-spacing: .18em; text-transform: uppercase; color: var(--c-brass-2); }
.project__caption h3 { color: #fff; font-size: var(--fs-lg); margin-top: .3rem; }

.collection { display: grid; gap: clamp(1rem, .5rem + 1.5vw, 1.5rem); }
@media (min-width: 640px) { .collection { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .collection { grid-template-columns: repeat(4, 1fr); } }
.collection__item { border-radius: var(--radius); overflow: hidden; background: var(--c-dark-2); }
.collection__item img { aspect-ratio: 3 / 4; width: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.collection__item:hover img { transform: scale(1.05); }
.collection__cap { padding: 1rem 1.1rem 1.2rem; }
.collection__cap span { font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--c-brass-2); }
.collection__cap p { font-family: var(--f-serif); font-size: 1.15rem; color: var(--c-cream); margin-top: .15rem; }

.materials { display: grid; gap: clamp(1.5rem, 1rem + 2vw, 2.5rem); }
@media (min-width: 800px) { .materials { grid-template-columns: repeat(3, 1fr); } }
.material { display: flex; flex-direction: column; gap: 1.1rem; }
.material__swatch { aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden; }
.material__swatch img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.material:hover .material__swatch img { transform: scale(1.06); }
.material__num { font-size: var(--fs-xs); letter-spacing: .2em; color: var(--c-brass); font-weight: 600; }
.material h3 { font-size: var(--fs-lg); }
.material p { font-size: var(--fs-sm); color: var(--c-ink-soft); }
.material .tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .3rem; }
.material .tag { font-size: var(--fs-xs); letter-spacing: .04em; padding: .35em .85em; border: 1px solid var(--c-line); border-radius: 100px; color: var(--c-ink-faint); }

.cta-band { text-align: center; }
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band .lead { margin-inline: auto; margin-top: 1rem; }
.cta-band .hero__cta { justify-content: center; }

.site-footer { background: var(--c-dark); color: var(--c-cream-soft); padding-block: clamp(3.5rem, 2rem + 5vw, 6rem) 2.5rem; }
.footer-grid { display: grid; gap: clamp(2rem, 1rem + 3vw, 4rem); grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand { color: var(--c-cream); font-size: 1.8rem; }
.footer-brand address { font-style: normal; margin-top: 1.25rem; line-height: 1.9; }
.footer-col h2 { font-family: var(--f-sans); font-size: var(--fs-xs); letter-spacing: .2em; text-transform: uppercase; color: var(--c-brass-2); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col a { color: var(--c-cream-soft); transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--c-cream); }
.footer-bottom {
  margin-top: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--c-line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.social { display: flex; gap: 1rem; }
.social a { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid var(--c-line-dark); border-radius: 50%; transition: background .25s var(--ease), color .25s var(--ease); }
.social a:hover { background: var(--c-brass); color: var(--c-dark); border-color: var(--c-brass); }

.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  max-width: 90rem;  margin-inline: auto;
  background: var(--c-dark);
  color: var(--c-cream);
}
@media (min-width: 860px) { .hero-split { grid-template-columns: 49% minmax(0, 1fr); } }
.hero-split__media { position: relative; min-height: 30rem; overflow: hidden; }.hero-split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-split__media::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 18.75rem;
  background: linear-gradient(90deg, var(--c-dark) 7%, rgba(13, 13, 13, 0) 100%);
  pointer-events: none;
}
.hero-split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;  padding: 4.75rem 2.5rem 0;  border-left: 1px solid rgba(255, 255, 255, .05);
}
.hero-split__body > * { max-width: 37.5rem; }.hero-split__text > * + * { margin-top: 1.5rem; }
.hero-split__body h1 em { font-style: italic; }
.hero-split__body .eyebrow { color: var(--c-brass-2); }
.hero-split__body h1 { color: #fff; }
.hero-split__body .lead { color: var(--c-cream-soft); }

.page-hero { background: var(--c-dark); color: var(--c-cream); padding-block: clamp(6rem, 4rem + 8vw, 10rem) clamp(1.5rem, 1rem + 1.5vw, 2.5rem); }
.page-hero + .section { padding-top: clamp(1.5rem, 1rem + 2vw, 3rem); }
.page-hero .eyebrow { color: var(--c-brass-2); }
.page-hero h1 { color: #fff; margin-top: 1rem; max-width: 18ch; }
.page-hero .lead { color: var(--c-cream-soft); margin-top: 1.25rem; max-width: 60ch; }
.breadcrumb { font-size: var(--fs-xs); letter-spacing: .04em; color: var(--c-cream-soft); margin-bottom: 1.5rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--c-cream-soft); } .breadcrumb a:hover { color: var(--c-brass-2); }
.breadcrumb [aria-current] { color: var(--c-cream); }

.prose { max-width: var(--container-narrow); }
.prose > * + * { margin-top: 1.25rem; }
.prose h2 { font-size: var(--fs-lg); margin-top: 2.5rem; }
.prose h3 { font-size: var(--fs-md); font-family: var(--f-sans); font-weight: 600; margin-top: 1.75rem; }
.prose a { color: var(--c-brass); text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 1.4rem; display: flex; flex-direction: column; gap: .5rem; }

.faq { max-width: none; }
.faq details { border-bottom: 1px solid var(--c-line); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.4rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  font-family: var(--f-serif); font-size: var(--fs-md);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--f-sans); font-size: 1.6rem; color: var(--c-brass); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding-bottom: 1.5rem; color: var(--c-ink-soft); }

.stat-grid { display: grid; gap: clamp(1.5rem,1rem + 2vw,2.5rem); grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.stat { border-top: 2px solid var(--c-brass); padding-top: 1.25rem; }
.stat b { display: block; font-family: var(--f-serif); font-size: clamp(2rem, 1.55rem + 1.8vw, 2.9rem); line-height: 1; color: var(--c-ink); white-space: nowrap; }
.section--dark .stat b { color: var(--c-cream); }
.stat span { font-size: var(--fs-sm); color: var(--c-ink-soft); }
.section--dark .stat span { color: var(--c-cream-soft); }

.feature-list { display: grid; gap: clamp(1.5rem,1rem + 2vw,2.5rem); grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); }
.feature-list .item h3 { font-size: var(--fs-md); font-family: var(--f-sans); font-weight: 600; margin-bottom: .5rem; }
.feature-list .item p { font-size: var(--fs-sm); color: var(--c-ink-soft); }
.feature-list .item .num { font-family: var(--f-serif); font-size: var(--fs-lg); color: var(--c-brass); display: block; margin-bottom: .5rem; }

.contact-grid { display: grid; gap: clamp(2rem,1rem + 3vw,4rem); }
@media (min-width: 820px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-item { margin-bottom: 1.5rem; }
.contact-item span { display: block; font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--c-brass); margin-bottom: .3rem; }
.contact-item a, .contact-item p { font-size: var(--fs-md); }

.timeline { position: relative; display: grid; gap: clamp(1.5rem, 1rem + 2vw, 2.5rem); }
.timeline::before { content: ""; position: absolute; left: 7px; top: .5rem; bottom: .5rem; width: 1px; background: var(--c-line); }
.section--dark .timeline::before { background: var(--c-line-dark); }
.timeline__item { position: relative; padding-left: 2.5rem; }
.timeline__item::before { content: ""; position: absolute; left: 0; top: .35rem; width: 15px; height: 15px; border-radius: 50%; border: 2px solid var(--c-brass); background: var(--c-bg); }
.section--dark .timeline__item::before { background: var(--c-dark); }
.timeline__year { font-family: var(--f-serif); font-size: var(--fs-lg); color: var(--c-brass); line-height: 1; }
.section--dark .timeline__year { color: var(--c-brass-2); }
.timeline__item h3 { font-size: var(--fs-md); font-family: var(--f-sans); font-weight: 600; margin: .5rem 0 .4rem; }
.timeline__item p { font-size: var(--fs-sm); color: var(--c-ink-soft); }
.section--dark .timeline__item p { color: var(--c-cream-soft); }

.values { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; justify-content: center; }
.values li { list-style: none; font-family: var(--f-serif); font-style: italic; font-size: var(--fs-md); color: var(--c-ink-soft); display: inline-flex; align-items: center; gap: 1.25rem; }
.values li:not(:last-child)::after { content: "◆"; font-style: normal; font-size: .5em; color: var(--c-brass); }
.section--dark .values li { color: var(--c-cream-soft); }

.team-grid { display: grid; gap: clamp(1.5rem,1rem + 2vw,2.5rem) clamp(1rem,.5rem + 2vw,2rem); grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
.team-member { }
.team-member .role { display: block; font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--c-brass); margin-bottom: .2rem; }
.team-member .name { font-family: var(--f-serif); font-size: var(--fs-md); }
.section--dark .team-member .name { color: var(--c-cream); }
.team-lead { border-left: 2px solid var(--c-brass); padding-left: 1.5rem; }

.services-list { display: grid; gap: clamp(2rem,1rem + 3vw,3.5rem); }
.service-row { display: grid; gap: 1rem clamp(2rem,1rem + 4vw,4rem); align-items: start; }
@media (min-width: 800px) { .service-row { grid-template-columns: minmax(0,.9fr) minmax(0,1.6fr); } }
.service-row__head { border-top: 2px solid var(--c-brass); padding-top: 1.25rem; }
.service-row__num { font-size: var(--fs-xs); letter-spacing: .2em; text-transform: uppercase; color: var(--c-brass); }
.service-row__head h3 { font-size: var(--fs-lg); margin-top: .4rem; }
.service-row__body > * + * { margin-top: 1rem; }
.service-row__body p { color: var(--c-ink-soft); }
.section--dark .service-row__body p { color: var(--c-cream-soft); }

.statement { font-family: var(--f-serif); font-size: var(--fs-xl); line-height: 1.15; max-width: 20ch; }
.statement--center { max-width: 24ch; margin-inline: auto; text-align: center; }

.swatch-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: .625rem;  margin-bottom: 4rem;}
.swatch-filter__knopf {
  font: inherit;
  font-size: var(--fs-sm);
  color: var(--c-cream-soft);
  background: transparent;
  border: 1px solid var(--c-line-dark);
  border-radius: 999px;
  padding: .55em 1.25em;
  cursor: pointer;
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.swatch-filter__knopf:hover { color: var(--c-cream); border-color: var(--c-brass); }
.swatch-filter__knopf.is-aktiv {
  color: var(--c-dark);
  background: var(--c-cream);
  border-color: var(--c-cream);
}

.swatch-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .swatch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .swatch-grid { grid-template-columns: repeat(3, 1fr); } }
.swatch { display: flex; flex-direction: column; gap: 1rem; }.swatch__img { display: block; width: 100%; padding: 0; border: 0; background: var(--c-bg-2); border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.swatch__img img { aspect-ratio: 443 / 524; width: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.swatch:hover .swatch__img img { transform: scale(1.04); }
.swatch figcaption {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.swatch__cat { display: block; font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--c-brass-2); margin-bottom: .2rem; }
.swatch__name { font-family: var(--f-serif); font-size: var(--fs-lg); line-height: 1.1; }
.section--dark .swatch__name { color: var(--c-cream); }
.swatch__link { flex-shrink: 0; display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid var(--c-line-dark); border-radius: 50%; color: var(--c-cream-soft); transition: background .25s var(--ease), color .25s var(--ease); }
.swatch__link:hover { background: var(--c-brass); color: var(--c-dark); border-color: var(--c-brass); }
.swatch[hidden] { display: none; }

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
  .reveal.is-visible { opacity: 1; transform: none; }
}

.mt-0 { margin-top: 0; }
.flow > * + * { margin-top: 1.25rem; }

.eyebrow--plain::before { display: none; }

.hero__inner { text-align: center; }
.hero__inner .eyebrow { justify-content: center; }
.hero h1 {
  max-width: none;
  margin-inline: auto;
  line-height: 1.1;  font-weight: 400;}
.hero h1 em { font-style: italic; }
.hero .lead {
  margin-inline: auto;
  max-width: 46ch;
  text-align: center;
}
.hero__cta { justify-content: center; }

.btn--brass {
  background: var(--c-brass-deco);  color: #fff;
  border-radius: 8px;}
.btn--brass:hover { background: var(--c-brass); color: var(--c-dark); }
.btn--dark {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
  border-radius: 8px;
}
.btn--dark:hover { background: #fff; color: var(--c-dark); border-color: #fff; }

.philo__grid { display: grid; gap: 3rem; }
.philo__label { align-self: start; }
.philo__title {
  font-weight: 400;
  line-height: 1;  font-size: clamp(1.75rem, 1.1rem + 2.9vw, 2.875rem);  max-width: 56rem;  color: #fff;
}
.philo__title em {
  display: block;  font-style: italic;
  color: rgba(255, 255, 255, .6);}
.philo__cols { display: grid; gap: 2.5rem; margin-top: 4rem; }.philo__col p { color: var(--c-cream-soft); max-width: 46ch; }
.philo__link { margin-top: 2rem; }

@media (min-width: 860px) {
  .philo__grid { grid-template-columns: 14rem minmax(0, 1fr); align-items: start; }  .philo__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .philo__cols { padding-left: calc(var(--pad-inline) + 14rem + 3rem); }}

.muster-form { max-width: none; }

.muster-form .form-grid { max-width: none; }

.auswahl {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  margin: 2.5rem 0 3rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--c-line-dark);
  border-bottom: 1px solid var(--c-line-dark);
}
.auswahl__marke {
  font-family: var(--f-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-brass);
  margin: 0;
  flex: none;
}
.auswahl__liste {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 20rem;
}
.auswahl__leer { font-size: var(--fs-sm); color: var(--t-70); }

.auswahl__schild {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--fs-sm);
  color: var(--c-cream);
  background: var(--c-dark-2);  border: 1px solid var(--c-line-dark);
  border-radius: 999px;
  padding: .35em .5em .35em .9em;
}
.auswahl__weg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4em;
  height: 1.4em;
  font-size: 1em;
  line-height: 1;
  color: var(--c-cream-soft);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.auswahl__weg:hover { background: var(--c-brass); color: var(--c-dark); }
.muster-form__step {
  font-size: var(--fs-lg);
  margin-top: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  margin-bottom: 1.5rem;
}
.muster-form__step:first-child { margin-top: 0; }

.muster-form__hinweis {
  font-size: var(--fs-sm);
  color: var(--t-70);
  margin: -.75rem 0 1.75rem;
  max-width: none;}

.muster-group { border: 0; padding: 0; margin: 0 0 2.5rem; }
.muster-group legend {
  font-family: var(--f-sans);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-brass);
  padding: 0;
  margin-bottom: 1rem;
}
.muster-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: clamp(.75rem, .5rem + 1vw, 1.25rem);
}
.muster-item { position: relative; }

.muster-item__cb {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.muster-item__label {
  display: block;
  border: 2px solid var(--c-line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.muster-item__label img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.muster-item__name {
  display: block;
  padding: .7rem .85rem;
  font-size: var(--fs-sm);
  font-weight: 500;
}
.muster-item__cb:hover + .muster-item__label { border-color: var(--c-brass); }
.muster-item__cb:focus-visible + .muster-item__label {
  outline: 2px solid var(--c-brass);
  outline-offset: 2px;
}
.muster-item__cb:checked + .muster-item__label {
  border-color: var(--c-brass-deco);
  box-shadow: 0 0 0 3px rgba(137, 118, 67, .22);
}
.muster-item__cb:checked + .muster-item__label .muster-item__name::before {
  content: "✓ ";
  color: var(--c-brass-deco);
  font-weight: 700;
}

.muster-count {
  font-size: var(--fs-sm);
  color: var(--c-ink-soft);
  margin-top: 1.25rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: var(--container-narrow);
}
@media (min-width: 680px) {
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field--wide { grid-column: 1 / -1; }
}
.field { margin: 0; max-width: none; }
.field label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 500;
  margin-bottom: .45rem;
}
.field input,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: var(--fs-sm);
  color: inherit;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: .8em 1em;
  transition: border-color .3s var(--ease);
}
.field textarea { resize: vertical; }
.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--c-brass);
  outline-offset: 1px;
  border-color: var(--c-brass);
}
.field input:user-invalid,
.field textarea:user-invalid { border-color: #b3261e; }

.field--check {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  max-width: none;
  margin-top: 2rem;
}
.field--check input { width: 1.15rem; height: 1.15rem; margin-top: .2rem; flex: none; }
.field--check label { font-weight: 400; margin-bottom: 0; }

.req { color: #b3261e; }
.form-note { display: block; font-size: var(--fs-xs); color: var(--c-ink-soft); margin-top: 1.75rem; }
.form-note + .muster-form__submit { margin-top: .75rem; }
.muster-form__submit { margin-top: 2rem; }

.mt-sm  { margin-top: 1.5rem; }
.mt-md  { margin-top: 2rem; }
.mt-lg  { margin-top: 2.5rem; }
.mt-xl  { margin-top: 3rem; }
.mw-text { max-width: 68ch; }
.mx-auto { margin-inline: auto; }
.rounded { border-radius: var(--radius); }
.pl-list { padding-left: 1.4rem; }
.v-center-60 { min-height: 60vh; display: flex; align-items: center; }

.social { margin-top: 1.5rem; }

:root {
  --fs-xl: clamp(1.75rem, 1.4rem + 1.1vw, 2.25rem);  --fs-lg: clamp(1.25rem, 1.1rem + .6vw, 1.5rem);  --fs-base: 1.125rem;  --fs-md: clamp(1.125rem, 1.05rem + .3vw, 1.25rem);}

h2 { line-height: 1.2; font-weight: 400; }
h3 { line-height: 1.3; font-weight: 400; }

.eyebrow {
  font-size: .875rem;  letter-spacing: .3em;
  font-weight: 700;
  line-height: 1.3;
}

.lead { font-weight: 300; line-height: 1.3; }

.section--dark p, .philo__col p { line-height: 1.5; }

address { font-style: normal; }
.site-footer address { font-size: 1rem; font-weight: 300; line-height: 1.3; font-style: normal; }

.collection__cap span {
  font-size: .625rem;  letter-spacing: .4em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
}
.material__num {
  font-size: .5625rem;  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 700;
}
.material h3 { font-size: 1.875rem; line-height: 1.2; }

.btn {
  font-size: .625rem;  line-height: 1.7;
  letter-spacing: 1.2px;  font-weight: 700;
  padding: 14px 22px;  border-radius: 8px;  gap: .8em;
}
.btn--sm { font-size: .625rem; padding: 12px 18px; }

.btn:hover { transform: translateY(-1px); }

.link-arrow {
  font-size: .625rem;
  letter-spacing: 1.2px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero { position: relative; }
.hero__scroll {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 20px;
  color: rgba(255, 255, 255, .7);
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.hero__scroll svg { width: 15px; height: 16px; display: block; }
.hero__scroll:hover { color: #fff; }
.hero__scroll:focus-visible { outline: 2px solid var(--c-brass); outline-offset: 4px; border-radius: 4px; }

@media (prefers-reduced-motion: no-preference) {
  .hero__scroll svg { animation: hero-scroll-hint 2.2s var(--ease) infinite; }
  @keyframes hero-scroll-hint {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(5px); }
  }
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
#philosophy, #services, #projects, #collection, #surface { scroll-margin-top: 5rem; }

.proj-split { display: flex; flex-direction: column; gap: 24px; max-width: 1280px; }

.proj-split__intro { display: flex; flex-direction: column; gap: 32px; }
.proj-split__head  { display: flex; flex-direction: column; gap: 12px; }
.proj-split__head h2 { margin: 0; }
.proj-split__head .lead { margin: 0; }
.proj-split__cta { margin: 0; }

.proj-split__list { display: flex; flex-direction: column; gap: 48px; }

.proj-row { display: block; }
.proj-row img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
}
.proj-row__cap {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
  margin-top: 1rem;
}
.proj-row__name {
  font-family: var(--f-serif);
  font-size: 1.5rem;  font-weight: 400;
  line-height: 1.3;
  color: var(--c-cream);
}
.proj-row__meta {
  font-size: .625rem;  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
}
.proj-row:hover .proj-row__name { color: var(--c-brass); }

@media (min-width: 900px) {
  .proj-split { flex-direction: row; align-items: flex-start; gap: 0; }
  .proj-split__intro { width: 40%; flex: none; gap: 64px; padding-right: clamp(2rem, 1rem + 3vw, 4rem); }
  .proj-split__list  { flex: 1 0 0; }
}

.section-head--split {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: none;
}
.section-head--split .section-head__text { max-width: var(--container-narrow); }
.section-head--split .section-head__cta { margin: 0; }

@media (min-width: 760px) {
  .section-head--split {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }
  .section-head--split .section-head__cta { flex: none; padding-bottom: .35rem; }
}

.page-hero h1 {
  font-size: clamp(1.375rem, 1.15rem + 1vw, 1.875rem);  line-height: 1.2;
  font-weight: 400;
}

.faq summary {
  font-family: var(--f-sans);
  font-size: 1.125rem;  line-height: 1.2;
  font-weight: 300;
}

.materials {
  display: grid;
  gap: 0;  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .015);
}
@media (min-width: 800px) {
  .materials { grid-template-columns: repeat(3, 1fr); }
  .materials > .material + .material { border-left: 1px solid rgba(255, 255, 255, .12); }
}
@media (max-width: 799.98px) {
  .materials > .material + .material { border-top: 1px solid rgba(255, 255, 255, .12); }
}

.material {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.material__swatch {
  aspect-ratio: 1 / 1;
  border-radius: 0;
  overflow: hidden;
}

.material__num,
.material h3,
.material p,
.material__facts { padding-inline: clamp(1.25rem, .8rem + 1.4vw, 2rem); }

.material__num { margin-top: clamp(1.5rem, 1rem + 1.4vw, 2rem); }
.material h3   { margin-top: .6rem; }
.material p    { margin-top: 1rem; font-size: var(--fs-sm); }

.material__facts {
  list-style: none;
  margin-top: auto;
  padding-top: 1.25rem;
  padding-bottom: clamp(1.5rem, 1rem + 1.4vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.material__facts::before {
  content: "";
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, .12);
  margin-bottom: 1.25rem;
  margin-inline: calc(clamp(1.25rem, .8rem + 1.4vw, 2rem) * -1);
}
.material__facts li {
  position: relative;
  padding-left: 1rem;
  font-size: .625rem;  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, .55);
  line-height: 1.5;
}
.material__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--c-brass);
}

.link-arrow { gap: 1.1em; }
.link-arrow__t {
  border-bottom-color: rgba(137, 118, 67, .4);
  padding-bottom: 4px;
}
.link-arrow:hover { gap: 1.4em; }
.link-arrow:hover .link-arrow__t { border-bottom-color: currentColor; }

.hero .lead {
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0;
  color: rgba(255, 255, 255, .6);  font-size: clamp(.875rem, .55rem + 1.4vw, 1.25rem);}

.hero::after {
  background:
    radial-gradient(ellipse 90% 70% at 50% 52%, rgba(8, 7, 5, .55) 0%, rgba(8, 7, 5, 0) 72%),
    linear-gradient(180deg,
      rgba(10, 8, 6, .72) 0%,
      rgba(10, 8, 6, .58) 38%,
      rgba(10, 8, 6, .70) 70%,
      rgba(10, 8, 6, .94) 100%);
}

.hero__bg img { transform: scale(1.02); }

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg-img--b { opacity: 0; }

@media (prefers-reduced-motion: no-preference) {
  .hero__bg-img {
    animation-duration: 32s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
  }
  .hero__bg-img--a { animation-name: hero-blend-a, hero-drift; }
  .hero__bg-img--b { animation-name: hero-blend-b, hero-drift; }

  @keyframes hero-blend-a {
    0%, 40%   { opacity: 1; }
    50%, 90%  { opacity: 0; }
    100%      { opacity: 1; }
  }
  @keyframes hero-blend-b {
    0%, 40%   { opacity: 0; }
    50%, 90%  { opacity: 1; }
    100%      { opacity: 0; }
  }

  @keyframes hero-drift {
    0%   { transform: scale(1.02); }
    50%  { transform: scale(1.07); }
    100% { transform: scale(1.02); }
  }
}

.hero::after {
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(8, 7, 5, .42) 0%, rgba(8, 7, 5, 0) 74%),
    linear-gradient(180deg,
      rgba(10, 8, 6, .62) 0%,
      rgba(10, 8, 6, .40) 40%,
      rgba(10, 8, 6, .46) 72%,
      rgba(10, 8, 6, .72) 100%);
}

.to-top {
  position: fixed;
  right: clamp(1rem, .5rem + 1.5vw, 2rem);
  bottom: clamp(1rem, .5rem + 1.5vw, 2rem);
  z-index: 90;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(20, 18, 15, .82);
  border: 1px solid rgba(255, 255, 255, .16);
  color: var(--c-cream);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease),
              visibility .3s var(--ease), background .3s var(--ease),
              border-color .3s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--c-brass-deco); border-color: var(--c-brass-deco); color: #fff; }
.to-top:focus-visible { outline: 2px solid var(--c-brass); outline-offset: 3px; }

.no-js .to-top { opacity: 1; visibility: visible; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .to-top { transition: opacity .01s, visibility .01s; transform: none; }
}

.hero__bg-img--b { object-position: center 62%; }

.prose { max-width: none; }
.prose p,
.prose li { max-width: 90ch; }

.prose h2,
.prose h3 { max-width: none; }

@media (min-width: 1500px) {
  .prose { columns: 2; column-gap: clamp(2.5rem, 1rem + 3vw, 5rem); }
  .prose p, .prose li { max-width: none; }
  .prose > * { break-inside: avoid-column; }
}

.prose {
  font-size: 1rem;  line-height: 1.6;  font-weight: 300;
  color: rgba(255, 255, 255, .7);
}
.prose h2 {
  font-size: 1.25rem;  line-height: 1.3;
  margin-top: 2.25rem;
  color: var(--c-cream);
}
.prose h3 {
  font-size: 1.0625rem;  font-family: var(--f-sans);
  font-weight: 600;
  margin-top: 1.5rem;
  color: var(--c-cream);
}
.prose p, .prose li { font-size: inherit; }

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.footer-social svg { flex: none; opacity: .8; }
.footer-social:hover svg { opacity: 1; }

@media (min-width: 860px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr max-content; }
  .footer-brand { padding-right: clamp(1.5rem, 4vw, 4rem); }
}

.footer-col h2 {
  font-family: var(--f-sans);
  font-size: .625rem;  font-weight: 700;
  letter-spacing: 1.2px;  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);  margin-bottom: 1.1rem;
}
.footer-col a {
  font-size: .875rem;  font-weight: 400;
  color: rgba(255, 255, 255, .5);
}
.footer-col a:hover { color: #fff; }

.site-footer address,
.footer-brand address {
  font-size: 1rem;  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, .7);
}
.footer-brand address a { color: inherit; }
.footer-brand address a:hover { color: #fff; }

.footer-bottom {
  font-size: .625rem;  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: #fff; }

.page-hero--xl h1 {
  font-size: clamp(2.5rem, 1.35rem + 5.1vw, 5.25rem);  letter-spacing: .2em;
  line-height: 1.1;
}
.page-hero--lg h1 {
  font-size: clamp(2.25rem, 1.35rem + 4vw, 4.5rem);  letter-spacing: 0;
  line-height: 1.1;
}
.page-hero--projekt h1 {
  font-size: clamp(1.75rem, 1.4rem + 1.1vw, 2.25rem);  line-height: 1.2;
}
.page-hero--sm h1 {
  font-size: clamp(1.375rem, 1.15rem + 1vw, 1.875rem);  line-height: 1.2;
}

.page-hero--xl h1 { overflow-wrap: break-word; }

:root {
  --container: 1280px;
  --sp-8: .5rem;    --sp-12: .75rem;  --sp-16: 1rem;
  --sp-20: 1.25rem; --sp-24: 1.5rem;  --sp-32: 2rem;
  --sp-48: 3rem;    --sp-64: 4rem;    --sp-80: 5rem;   --sp-96: 6rem;

  --t-100: #ffffff;
  --t-80:  rgba(255, 255, 255, .8);
  --t-70:  rgba(255, 255, 255, .7);
  --t-60:  rgba(255, 255, 255, .6);
  --t-50:  rgba(255, 255, 255, .5);
  --t-40:  rgba(255, 255, 255, .4);
}

.section { padding-block: clamp(4rem, 2.5rem + 4.5vw, 6rem); }
.container { padding-inline: var(--pad-inline); }

.philo__title { max-width: 56rem; }

@media (min-width: 860px) {
  .philo__grid { grid-template-columns: 14rem minmax(0, 1fr); }
  .philo__cols { padding-left: calc(var(--pad-inline) + 14rem + 3rem); }
  .philo__cols { margin-top: 4rem; }
}

.material__num,
.material h3,
.material p,
.material__facts { padding-inline: var(--sp-32); }

.material__num { margin-top: var(--sp-32); }
.material h3   { margin-top: var(--sp-12); }
.material p    { margin-top: var(--sp-16); margin-bottom: var(--sp-32); }

.material__facts {
  padding-top: 0;
  padding-bottom: var(--sp-32);
  gap: var(--sp-12);
}
.material__facts::before {
  margin-bottom: var(--sp-24);
  margin-inline: calc(var(--sp-32) * -1);
}

.material__swatch { margin-bottom: 0; }

.hero h1 { font-size: clamp(2rem, 1.4rem + 2.7vw, 3rem); }
.page-hero--xl h1 {
  font-size: clamp(2rem, 1.4rem + 2.7vw, 3rem);  letter-spacing: .14em;}

.page-hero--lg h1 { font-size: clamp(1.75rem, 1.3rem + 2.2vw, 2.5rem); }
.page-hero--projekt h1 { font-size: clamp(1.5rem, 1.28rem + 1.1vw, 2rem); }
.page-hero--sm h1 { font-size: clamp(1.375rem, 1.22rem + .75vw, 1.75rem); }
.philo__title { font-size: clamp(1.625rem, 1.3rem + 1.6vw, 2.25rem); }
h2, .section-head h2 { font-size: clamp(1.5rem, 1.28rem + 1.1vw, 2rem); }
h3, .material h3 { font-size: clamp(1.25rem, 1.14rem + .55vw, 1.625rem); }
h4 { font-size: clamp(1.125rem, 1.06rem + .3vw, 1.375rem); }
.footer-col h2 { font-size: .625rem; }
.muster-form__step { font-size: clamp(1.125rem, 1rem + .5vw, 1.375rem); }.prose h2 { font-size: 1.25rem; }
.prose h3 { font-size: 1.0625rem; }

:root {
  --lh-display: 1.1;
  --lh-heading: 1.3;
  --lh-caps:    1.4;
  --lh-body:    1.6;

  --ls-caps:      .12em;
  --ls-caps-wide: .2em;

  --radius: 8px;}

body { line-height: var(--lh-body); }

.hero h1,
.page-hero--xl h1,
.page-hero--lg h1,
.philo__title      { line-height: var(--lh-display); }

h2, h3, h4,
.page-hero--projekt h1,
.page-hero--sm h1,
.proj-row__name,
.material h3       { line-height: var(--lh-heading); }

p, li, .lead,
.prose, .faq summary { line-height: var(--lh-body); }

.eyebrow, .btn, .link-arrow,
.nav-link, .footer-col h2, .footer-bottom,
.material__num, .material__facts li,
.proj-row__meta, .collection__cap span { line-height: var(--lh-caps); }

.btn, .link-arrow, .footer-col h2, .footer-bottom,
.material__facts li, .proj-row__meta { letter-spacing: var(--ls-caps); }

.eyebrow, .material__num,
.collection__cap span                { letter-spacing: var(--ls-caps-wide); }

.page-hero--xl h1                    { letter-spacing: var(--ls-caps); }

h2, h3, h4, .philo__title,
.hero h1, .page-hero--lg h1,
.page-hero--projekt h1,
.page-hero--sm h1,
p, li, .lead, .nav-link              { letter-spacing: 0; }

.btn, .btn--brass, .btn--dark,
.muster-item__label, .field input, .field textarea,
.to-top, .proj-row img, .split__media img,
.rounded                             { border-radius: var(--radius); }

.social a                            { border-radius: 50%; }

.lead, .prose, .philo__col p,
.section--dark p:not(.eyebrow),
.material p:not(.eyebrow)             { color: var(--t-70); }

.eyebrow, .section--dark .eyebrow    { color: var(--c-brass); }

.material__facts li, .proj-row__meta,
.collection__cap span, .footer-col a,
.footer-col h2, .footer-bottom,
.nav-link                            { color: var(--t-50); }

h1, h2, h3, h4                       { color: var(--t-100); }

.projects__note {
  margin-top: var(--sp-24);
  font-size: .875rem;  line-height: var(--lh-body);
  color: var(--t-50);
  max-width: none;}

p, li,
.lead,
.page-hero .lead,
.hero .lead,
.hero-split__body .lead,
.philo__col p,
.prose p, .prose li,
.mw-text                { max-width: none; }

.hero h1                { max-width: 24ch; }
.philo__title           { max-width: 56rem; }.statement              { max-width: 24ch; }
.statement--center      { max-width: 28ch; }
.cta-band h2            { max-width: 24ch; }
.page-hero h1           { max-width: none; }

@media (min-width: 760px) {
  .projects--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.projects { gap: var(--sp-32); }

.materials .material__facts {
  padding-inline: var(--sp-32);
  padding-top: 0;
  padding-bottom: var(--sp-32);
  gap: var(--sp-12);
}
.materials .material__facts::before {
  margin-inline: calc(var(--sp-32) * -1);
  margin-bottom: var(--sp-24);
}

.site-footer {
  background: #141414;
  border-top: 1px solid rgba(255, 255, 255, .05);
  color: var(--t-70);
}

.project-card { display: block; }

.project-card__media {
  display: block;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  overflow: hidden;
}
.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.project-card:hover .project-card__media img { transform: scale(1.04); }

.project-card__name {
  margin-top: var(--sp-20);
  font-size: clamp(1.25rem, 1.14rem + .55vw, 1.625rem);
  font-weight: 400;
  line-height: var(--lh-heading);
  color: var(--t-100);
}
.project-card:hover .project-card__name { color: var(--c-brass); }

.project-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-24) var(--sp-32);
  margin-top: var(--sp-16);
}
.project-card__feld { display: flex; flex-direction: column; gap: .35rem; }
.project-card__label {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: var(--ls-caps-wide);
  text-transform: uppercase;
  color: var(--c-brass);
}
.project-card__wert {
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--t-70);
}

.project-card__meta {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  gap: 24px;
  padding: 15px 0 0;
  margin-top: var(--sp-16);
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.project-card__feld {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 5.5px;
  flex: 1 0 0;
}
.project-card__label {
  font-size: .5625rem;  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-brass);
}
.project-card__wert {
  font-size: .625rem;  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--t-100);
}

.project-card__meta {
  justify-content: space-between;
  gap: var(--sp-24);
}
.project-card__feld { flex: 0 1 auto; }

.project-card__feld:nth-child(2) { align-items: center; text-align: center; }
.project-card__feld:last-child   { align-items: flex-end;  text-align: right; }

@media (max-width: 520px) {
  .project-card__meta { flex-wrap: wrap; gap: var(--sp-16); }
  .project-card__feld,
  .project-card__feld:nth-child(2),
  .project-card__feld:last-child { align-items: flex-start; text-align: left; flex: 1 0 40%; }
}

.project-card__meta { padding-right: 20%; }

@media (max-width: 520px) {
  .project-card__meta { padding-right: 0; }
}

.kennzahlen {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-32);
  list-style: none;
}
@media (min-width: 760px) {
  .kennzahlen {
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
  }
}

.kennzahl { display: flex; flex-direction: column; gap: var(--sp-8); }
.kennzahl__wert {
  font-family: var(--f-serif);
  font-size: clamp(1.75rem, 1.3rem + 2.2vw, 2.5rem);
  font-weight: 400;
  line-height: var(--lh-display);
  color: var(--t-100);
}
.kennzahl__label {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: var(--ls-caps-wide);
  text-transform: uppercase;
  color: var(--c-brass);
}

.bild-breit {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.chronik { list-style: none; display: flex; flex-direction: column; }
.chronik__eintrag {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--sp-8);
  padding-block: var(--sp-32);
  border-top: 1px solid var(--c-line);
}
.chronik__eintrag:last-child { border-bottom: 1px solid var(--c-line); }

@media (min-width: 860px) {
  .chronik__eintrag {
    grid-template-columns: 8rem 12rem minmax(0, 1fr);
    gap: var(--sp-32);
    align-items: start;
  }
  .chronik__titel { grid-column: 3; }
  .chronik__eintrag p { grid-column: 3; }
}

.chronik__jahr {
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 1.28rem + 1.1vw, 2rem);
  line-height: var(--lh-display);
  color: var(--c-brass);
}
.chronik__phase {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: var(--ls-caps-wide);
  text-transform: uppercase;
  color: var(--t-50);
}
.chronik__titel { margin: 0; }
.chronik__eintrag p { margin-top: var(--sp-8); color: var(--t-70); }

.werteliste {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-16) var(--sp-32);
  list-style: none;
}
.werteliste li {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: var(--ls-caps-wide);
  text-transform: uppercase;
  color: var(--t-50);
}

.leistungen { display: flex; flex-direction: column; }

.leistung {
  padding-block: var(--sp-48);
  border-top: 1px solid var(--c-line);
}
.leistung:last-child { border-bottom: 1px solid var(--c-line); }

.leistung__nr {
  font-size: .5625rem;
  font-weight: 700;
  letter-spacing: var(--ls-caps-wide);
  text-transform: uppercase;
  color: var(--c-brass);
  margin: 0;
}
.leistung__titel { margin-top: var(--sp-12); }
.leistung p + p { margin-top: var(--sp-16); }
.leistung > p:not(.leistung__nr) { color: var(--t-70); }

@media (min-width: 900px) {
  .leistung {
    display: grid;
    grid-template-columns: 14rem minmax(0, 1fr);
    column-gap: var(--sp-48);
    row-gap: 0;
    align-items: start;
  }
  .leistung__nr { grid-column: 1; grid-row: 1; }
  .leistung__titel { grid-column: 2; margin-top: 0; margin-bottom: var(--sp-16); }
  .leistung > p:not(.leistung__nr) { grid-column: 2; }
}

.personen {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-32);
  list-style: none;
}
@media (min-width: 700px)  { .personen { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .personen { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.person img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}
.person__name { margin-top: var(--sp-16); }
.person__rolle {
  margin-top: var(--sp-8);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: var(--ls-caps-wide);
  text-transform: uppercase;
  color: var(--c-brass);
}

.ceo-fragen { margin-top: var(--sp-32); }
.ceo-fragen h3 {
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-32);
  font-size: clamp(1.125rem, 1.05rem + .35vw, 1.375rem);
}
.ceo-fragen h3:last-child { margin-bottom: 0; }
.ceo-fragen__label {
  font-size: .5625rem;
  font-weight: 700;
  letter-spacing: var(--ls-caps-wide);
  text-transform: uppercase;
  color: var(--c-brass);
}

@media (min-width: 760px) { }
.mission-bilder img { width: 100%; height: auto; border-radius: var(--radius); display: block; }

.mt-block__inner { display: flex; flex-direction: column; gap: clamp(2.25rem, 1.75rem + 1.5vw, 3.25rem); }
.mt-block__inner .section-head { margin-bottom: 0; }
.mt-block__row { display: grid; gap: 1.5rem; }
.matkarten {
  display: grid;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 860px) {
  .mt-block__row {
    grid-template-columns: minmax(0, 1fr) 33%;
    height: 50rem;  }
  .matkarten {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    height: 100%;
  }
}
@media (max-width: 859.98px) {
  .matkarten { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .matkarten { grid-template-columns: minmax(0, 1fr); }
}

.matkarte {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 12px;
}
.matkarte__media {
  position: relative;
  flex: 1 0 0;
  min-height: 11rem;
  overflow: hidden;
}
.matkarte__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.6);}
.matkarte__body {
  display: flex;
  flex-direction: column;
  gap: .5rem;  min-height: 7.375rem;  padding: 1rem 1.5rem;}
.matkarte__body h3 { color: var(--c-cream); }
.matkarte__body p { color: var(--t-70); }

.technikkarte {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 12px;
  padding: 2.5rem;}
.technikkarte__titel { padding-bottom: 3rem; }.technikkarte__liste { display: flex; flex-direction: column; }
.technik { display: flex; flex-direction: column; gap: .5rem; }
.technik:first-child {
  padding-bottom: 3rem;  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.technik + .technik { padding-top: 1.5rem; }.technik:nth-child(2) { padding-bottom: 1.5rem; }
.technik:last-child { border-top: 1px solid rgba(255, 255, 255, .1); }
.technik h4 { color: var(--c-cream); }
.technik p { color: var(--t-70); }
.technikkarte__knopf {
  margin-top: 2.5rem;
  width: 100%;
  justify-content: center;
  text-align: center;
}

@media (max-width: 859.98px) {
  .technikkarte { gap: 4rem; }
  .technikkarte__knopf { margin-top: 0; }
}

.werte__liste {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;  list-style: none;
  margin: 0;
  padding: 0;
}
.wert {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;  width: min-content;
}
.wert__icon {
  flex: none;
  width: 36px;
  height: 33px;
  color: var(--c-brass);}
.wert__text {
  font-family: var(--f-sans);
  font-size: .625rem;  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.7;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: #fff;
}

@media (max-width: 860px) {
  .werte__liste {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    gap: 3rem 3rem;
    max-width: 37.5rem;    margin-inline: auto;
  }
  .wert { width: 100%; }
}

.field__hilfe {
  display: block;
  font-size: var(--fs-xs);
  color: var(--t-70);
  margin-top: .35rem;
}

.field-reihe {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}
@media (min-width: 680px) {
  .field-reihe { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.kontakt-block__spalten { display: grid; gap: 3rem; }

@media (min-width: 1000px) {
  .kontakt-block__spalten {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 4rem;
    align-items: start;
  }
  .kontakt-block__daten .contact-grid { grid-template-columns: minmax(0, 1fr); }
}

.kontakt-block__formular h2 { margin-bottom: .75rem; }

.mission__reihe { display: grid; gap: 4rem; }
@media (min-width: 900px) {
  .mission__reihe { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
}
.mission__bild {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1.56667;}
.mission__bild img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mission__text h2 { margin-top: 1rem; }
.mission__text p { margin-top: 1.5rem; }
.mission__klein { font-size: var(--fs-sm); }

.ceo-fragen { margin-top: 2.5rem; }
.ceo-frage { border-bottom: 1px solid var(--c-line-dark); }
.ceo-frage summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.5rem;
  align-items: start;
  gap: .5rem 1rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
}
.ceo-frage summary::-webkit-details-marker { display: none; }
.ceo-frage__marke {
  grid-column: 1;
  font-family: var(--f-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-brass);
}
.ceo-frage__text {
  grid-column: 1;
  font-family: var(--f-serif);
  font-size: var(--fs-md);
  line-height: 1.3;
  color: var(--c-cream);
}
.ceo-frage summary::after {
  content: "+";
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--c-cream-soft);
  transition: transform .25s var(--ease), color .25s var(--ease);
}
.ceo-frage[open] summary::after { transform: rotate(45deg); color: var(--c-brass); }
.ceo-frage summary:hover::after { color: var(--c-brass); }
.ceo-frage__antwort {
  padding: 0 3rem 1.75rem 0;
  color: var(--t-70);
  margin: 0;
}

.bildhero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  background: var(--c-dark);
  color: var(--c-cream);
}
.bildhero__bild { position: absolute; inset: 0; z-index: 0; }
.bildhero__bild img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bildhero__bild::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,.35) 0%, rgba(13,13,13,0) 35%, rgba(13,13,13,.75) 100%);
}
.bildhero__inhalt {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;  padding-bottom: 2rem;}
.bildhero .breadcrumb { margin-bottom: 0; }
.bildhero__titel {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 1.2rem + 6vw, 5.25rem);  letter-spacing: .2em;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  max-width: none;
}

.bildhero__zeile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 4rem;}
.bildhero__philo {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
}
.bildhero__marke {
  font-family: var(--f-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-cream-soft);
}
.bildhero__satz {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: var(--fs-md);
  color: #fff;
}
.bildhero__rechts {
  display: flex;
  align-items: center;
  gap: 2.5rem;  margin-left: auto;
}
.bildhero__claim {
  font-family: var(--f-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-align: right;
  line-height: 1.6;
  color: var(--c-cream-soft);
  margin: 0;
}
.bildhero__knopf { padding: 14px 22px; gap: 12px; white-space: nowrap; }

@media (max-width: 860px) {
  .bildhero { min-height: 80vh; }
  .bildhero__rechts { margin-left: 0; width: 100%; justify-content: space-between; }
  .bildhero__claim { text-align: left; }
}
.collection__mehr { margin-top: 2.5rem; }

.bildhero__titel--satz {
  font-size: clamp(2rem, 1.2rem + 3.4vw, 3.6rem);
  letter-spacing: -.01em;
  text-transform: none;
  max-width: 20ch;
}
.bildhero__inhalt .bildhero__marke { margin: 0; }
.bildhero__aktion {
  display: flex;
  align-items: center;
  gap: 2rem;  width: 100%;
  margin: 0;
}
.bildhero__linie {
  flex: 1 1 auto;
  height: 1px;
  background: rgba(255, 255, 255, .1);
}
.bildhero__weiter {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  flex: none;
  text-decoration: none;
  color: var(--c-cream);
}
.bildhero__weiter-text {
  font-family: var(--f-sans);
  font-size: .625rem;  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.bildhero__weiter-kreis {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.bildhero__weiter:hover .bildhero__weiter-kreis {
  background: var(--c-cream);
  border-color: var(--c-cream);
  color: var(--c-dark);
  transform: translateY(3px);
}

@media (max-width: 620px) {
  .bildhero__linie { display: none; }
  .bildhero__aktion { gap: 1rem; }
}
@media (max-width: 1199.98px) and (min-width: 810px) {
  .hero { min-height: 720px; }
}

.bildhero__titel--eng {
  font-size: clamp(2.25rem, 1.2rem + 4.6vw, 4.5rem);  letter-spacing: 0;
}

.hero__inner {
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;}
.hero h1        { max-width: none; margin-block: 0; }
.hero .lead     { max-width: 672px; margin-inline: auto; }
.hero__cta      { gap: .5rem; margin-top: .5rem; }.opt-hint { color: var(--c-ink-soft); font-size: var(--fs-xs); }

.projekt-detail { display: grid; gap: clamp(1.5rem, 1rem + 2vw, 2.5rem); }
@media (min-width: 860px) {
  .projekt-detail {
    grid-template-columns: minmax(0, 70fr) minmax(0, 30fr);
    column-gap: clamp(4.5rem, 2.5rem + 8vw, 11rem);
    align-items: start;
  }
  .projekt-detail__label { grid-column: 1; grid-row: 1; margin-bottom: 1.5rem; }
  .projekt-detail__text  { grid-column: 1; grid-row: 2; }
  .projekt-daten         { grid-column: 2; grid-row: 2; }
}
.projekt-daten { margin: 0; display: grid; gap: 1.75rem; }
.projekt-daten dt {
  font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-brass); margin-bottom: .4rem;
}
.projekt-daten dd { margin: 0; text-transform: uppercase; letter-spacing: .02em; }

.projekt-visuals { display: grid; gap: clamp(1rem, .5rem + 1.4vw, 1.5rem); }
@media (min-width: 720px) {
  .projekt-visuals { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
}
.projekt-visuals img { aspect-ratio: 3 / 4; }
.projekt-visuals figure { margin: 0; }
.projekt-visuals img { width: 100%; height: 100%; object-fit: cover; display: block; }

.projekt-weiter { display: flex; flex-wrap: wrap; align-items: baseline;
                  justify-content: space-between; gap: 1rem 2rem; }
.projekt-weiter h2 { margin: 0; }

.projekt-kopf { padding-top: clamp(1.5rem, 1rem + 2vw, 3rem); }
.projekt-kopf .breadcrumb { margin-bottom: 1.25rem; }
.projekt-kopf__bild {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.projekt-kopf__bild img {
  display: block; width: 100%;
  aspect-ratio: 16 / 10; object-fit: cover;
}
.projekt-kopf__bild::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(13,13,15,0) 45%, rgba(13,13,15,.72) 100%);
}
.projekt-kopf__bild h1 {
  position: absolute; z-index: 1;
  left: clamp(1.25rem, .75rem + 2vw, 2.75rem);
  bottom: clamp(1rem, .6rem + 1.6vw, 2.25rem);
  right: clamp(1.25rem, .75rem + 2vw, 2.75rem);
  margin: 0; color: var(--c-cream);
  font-size: clamp(1.375rem, 1.1rem + 1vw, 1.875rem);
  font-weight: 400; letter-spacing: 0;
}
.projekt-kopf__ort { margin-top: 1.25rem; }

.projekt-visuals figure { border-radius: var(--radius); overflow: hidden; }

.projekt-weiter-band .container { border-top: 1px solid var(--c-line-dark); padding-top: clamp(2rem, 1.4rem + 2.4vw, 3.5rem); }

.projekt .section { padding-block: clamp(1.25rem, .9rem + 1.6vw, 2rem); }
.projekt .projekt-kopf { padding-top: clamp(5.5rem, 4.75rem + 1.5vw, 6.5rem); }
.projekt .projekt-weiter-band { padding-bottom: clamp(2.5rem, 1.8rem + 3vw, 4.5rem); }

@media (min-width: 940px) {
  .field-reihe { grid-template-columns: minmax(0, 2fr) 7rem minmax(0, 1.3fr) minmax(0, 1fr); }
}

.muster-hinweis {
  margin-top: clamp(2rem, 1.4rem + 2vw, 3rem);
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--c-line);
}
.muster-hinweis p {
  font-size: .82rem; color: var(--t-70);  max-width: none;
  text-wrap: balance;}
@media (max-width: 1100px) {
  .muster-hinweis p { max-width: 70ch; }
}
.muster-hinweis strong { color: var(--c-brass); font-weight: 500; }

.weltkarte { max-width: 100%; height: auto; }

@media (prefers-reduced-motion: no-preference) {
  .hero__bg-img {
    animation-duration: 24s;
    transform-origin: 50% 40%;
  }
  .hero__bg-img--a { animation-name: hero-blend-a, hero-kenburns; }
  .hero__bg-img--b { animation-name: hero-blend-b, hero-kenburns; animation-delay: 0s, -12s; }

  @keyframes hero-kenburns {
    0%   { transform: scale(1.02) translate3d(0, 0, 0); }
    50%  { transform: scale(1.12) translate3d(-1.2%, 1%, 0); }
    100% { transform: scale(1.02) translate3d(0, 0, 0); }
  }

  .hero__inner > * {
    opacity: 0;
    transform: translateY(28px);
    animation: hero-rise 1.1s var(--ease) forwards;
  }
  .hero__inner > :nth-child(1) { animation-delay: .15s; }
  .hero__inner > :nth-child(2) { animation-delay: .35s; }
  .hero__inner > :nth-child(3) { animation-delay: .55s; }
  .hero__inner > :nth-child(4) { animation-delay: .75s; }
  @keyframes hero-rise {
    to { opacity: 1; transform: none; }
  }

  .hero__scroll {
    opacity: 0;
    animation: hero-rise 1s var(--ease) 1.2s forwards, hero-breathe 2.6s ease-in-out 2.4s infinite;
  }
  @keyframes hero-breathe {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
}

.hero {
  position: sticky;
  top: 0;
  z-index: 0;
}
:where(.hero ~ *) {
  position: relative;
  z-index: 1;
  background-color: var(--c-bg);
}

@media (min-width: 900px) and (prefers-reduced-motion: no-preference) {
  .proj-split__intro { position: sticky; top: 7rem; }
  .proj-row {
    position: sticky;
    top: 6rem;
    background: var(--c-dark);
    border-radius: var(--radius);
    box-shadow: 0 -18px 40px rgba(0, 0, 0, .45);
    padding-bottom: .5rem;
  }
  .proj-row:nth-child(2) { top: 7.5rem; }
  .proj-row:nth-child(3) { top: 9rem; }
  .proj-row img { box-shadow: 0 10px 30px rgba(0, 0, 0, .35); }
}

.hero.is-covered .hero__bg-img { animation-play-state: paused; }

.section--anschluss { padding-top: clamp(.5rem, 1vw, 1.5rem); }

.text-light .section p:not(.eyebrow):not(.lead):not(.statement) {
  font-weight: 300;
  color: rgba(255, 255, 255, .6);
}
.text-light .section p strong { font-weight: 500; color: var(--c-cream); }

main .lead, .hero .lead, .page-hero .lead, .section--dark .lead,
.hero-split__body .lead, .proj-split__head .lead, .cta-band .lead {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: clamp(1.0625rem, 1rem + .45vw, 1.375rem);  line-height: 1.4;
  color: rgba(255, 255, 255, .8);
}
main .section p:not(.eyebrow):not(.lead):not(.statement):not(.section-head__cta):not(.proj-split__cta):not(.collection__mehr):not(.mt-md):not(.muster-form__hinweis):not(.person__rolle):not(.projects__note):not(.opt-hint):not(.proj-row__cap):not(.hinweis-klein):not(.section-head__satz):not(.mission__satz):not(.mission__klein),
main .section .prose li,
main .section .werteliste li,
main .section .pl-list li {
  font-weight: 300;
  font-size: clamp(1rem, .95rem + .25vw, 1.125rem);  line-height: 1.6;
  color: rgba(255, 255, 255, .7);
}
main .section p strong, main .section li strong { font-weight: 500; color: var(--c-cream); }

.section--karte { padding-block: clamp(.5rem, 1.5vw, 1.5rem); }

.hinweis-klein { font-size: var(--fs-sm); line-height: 1.5; font-weight: 300; color: rgba(255, 255, 255, .6); }
.hinweis-klein strong { font-weight: 500; color: var(--c-cream); }

.person--nah { overflow: hidden; border-radius: var(--radius); }
.person--nah img { transform: scale(1.12); transform-origin: 50% 100%; }

.section-head--team { max-width: none; display: flex; flex-direction: column; gap: 1rem; }
.section-head__satz { max-width: 500px; margin: 0; font-size: 1.125rem; font-weight: 400; line-height: 1.5; color: rgba(255, 255, 255, .7); }
@media (min-width: 900px) {
  .section-head--team { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 3rem; }
}

.mission__satz  { font-size: 1.125rem; font-weight: 400; line-height: 1.5; color: rgba(255, 255, 255, .7); }
.mission__klein { font-size: 1rem; font-weight: 300; line-height: 1.5; color: rgba(255, 255, 255, .7); }

.section-head .lead { margin-top: .75rem; }

.statement--breit { max-width: none; }

a.collection__item { display: block; color: inherit; text-decoration: none; }
a.collection__item:hover .collection__cap p { color: var(--c-brass); }

@media (max-width: 940px) {
  .nav-item:hover > .dropdown,
  .nav-item:focus-within > .dropdown,
  .dropdown.is-open { transform: none; }
}

.hp-feld { position: absolute !important; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-meldung { display: none; margin-bottom: 1.25rem; padding: .9rem 1.1rem; border: 1px solid var(--c-brass); border-radius: var(--radius); color: var(--c-cream); font-size: var(--fs-sm); }
.form-meldung.is-sichtbar { display: block; }

.project-card--statisch { cursor: default; }
.project-card--statisch:hover .project-card__name { color: inherit; }

.swatch__img { position: relative; }
.swatch__img img { filter: brightness(.7); transition: transform .6s var(--ease), filter .6s var(--ease); }
.swatch:hover .swatch__img img, .swatch__img:focus-visible img { filter: brightness(1); transform: scale(1.04); }

@media (prefers-reduced-motion: reduce) {
  .swatch__img img { transition: none; }
}

.swatch__img { cursor: default; }
