:root {
  --black: #0c0c0b;
  --ink: #171614;
  --ivory: #f2eee6;
  --paper: #fbfaf7;
  --stone: #c8c0b4;
  --line: rgba(12, 12, 11, 0.13);
  --gold: #8b713f;
  --wine: #631822;
  --moss: #1f2b27;
  --paper-ruled: repeating-linear-gradient(0deg, transparent 0 38px, rgba(12, 12, 11, 0.035) 38px 39px);
  --serif: "Cormorant Garamond", "Baskerville", "Libre Baskerville", "Iowan Old Style", "Hoefler Text", Georgia, serif;
  --sans: "Optima", "Avenir Next", "Gill Sans", "Helvetica Neue", Arial, sans-serif;
  --condensed: "Optima", "Avenir Next Condensed", "Gill Sans", "Helvetica Neue", Arial, sans-serif;
  --script: "Bickham Script Pro", "Snell Roundhand", "Apple Chancery", "Zapfino", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(139, 113, 63, 0.08), transparent 28%),
    repeating-linear-gradient(90deg, rgba(12,12,11,0.018) 0 1px, transparent 1px 6px),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-variant-ligatures: common-ligatures;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

p, h1, h2, h3 {
  margin: 0;
}

button, input, select, textarea {
  font: inherit;
}

.wrap {
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
}

.narrow {
  width: min(100% - 48px, 900px);
  margin: 0 auto;
}

.eyebrow {
  color: var(--wine);
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.serif {
  font-family: var(--serif);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: grid;
  gap: 3px;
  min-width: 245px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.brand-sub {
  color: #6b665f;
  font-family: var(--condensed);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  font-size: 10px;
  font-family: var(--condensed);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 0 0;
  color: rgba(23, 22, 20, 0.58);
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
}

.breadcrumb-nav a {
  color: rgba(23, 22, 20, 0.72);
}

.breadcrumb-nav a:hover {
  color: var(--wine);
}

.breadcrumb-nav [aria-current="page"] {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  font-size: 11px;
  font-family: var(--condensed);
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.header-cta,
.btn-dark,
.btn-light,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-family: var(--condensed);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta {
  min-height: 38px;
  padding: 0 16px;
  background: transparent;
  color: var(--black);
}

.header-cta,
.btn-dark {
  background: var(--black);
  color: var(--ivory);
}

.btn-light {
  background: var(--ivory);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--black);
}

.header-cta:hover,
.btn-dark:hover,
.btn-light:hover,
.btn-outline:hover {
  transform: translateY(-2px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 3px;
}

.hero {
  min-height: clamp(820px, calc(100svh - 72px), 940px);
  position: relative;
  display: block;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 225, 182, 0.18), transparent 24%),
    repeating-linear-gradient(92deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, #a40f19 0%, #820a12 56%, #f5ecdf 56%, #f8f2e8 100%);
  color: var(--ivory);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 34%;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.18), transparent 28%, rgba(0,0,0,0.14)),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.045) 0 1px, transparent 1px 5px);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -4vw;
  right: -4vw;
  top: 51%;
  z-index: 5;
  height: 168px;
  background: #f7f1e7;
  clip-path: polygon(0 31%, 6% 18%, 13% 34%, 20% 16%, 28% 30%, 35% 14%, 44% 32%, 52% 18%, 60% 34%, 69% 16%, 78% 31%, 86% 19%, 94% 33%, 100% 21%, 100% 100%, 0 100%);
  box-shadow: 0 -8px 28px rgba(0,0,0,0.16);
}

.hero-landscape,
.hero-clouds,
.hero-angel,
.hero-porcelain,
.hero-stilllife {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.hero-landscape {
  left: 0;
  right: 0;
  top: 61%;
  bottom: auto;
  z-index: 1;
  width: 100%;
  height: 39%;
  object-fit: cover;
  object-position: center 22%;
  opacity: 0.24;
  filter: saturate(0.62) contrast(0.92) sepia(0.18);
}

.hero-clouds {
  left: 50%;
  top: 48%;
  z-index: 6;
  width: 118vw;
  height: 455px;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: center 34%;
  filter: drop-shadow(0 16px 22px rgba(51, 24, 16, 0.18));
}

.hero-angel {
  left: max(26px, calc((100vw - 1320px) / 2 + 14px));
  top: 59%;
  z-index: 8;
  width: clamp(150px, 17vw, 240px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(42, 26, 14, 0.2));
  transform: rotate(-7deg);
}

.hero-porcelain {
  left: max(-18px, calc((100vw - 1320px) / 2 - 18px));
  top: 58%;
  z-index: 8;
  width: clamp(240px, 25vw, 390px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(42, 26, 14, 0.22)) saturate(0.96);
  transform: rotate(-5deg);
}

.hero-labels {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.hero-labels span {
  position: absolute;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  color: rgba(255, 244, 224, 0.84);
  border: 1px solid rgba(255, 244, 224, 0.3);
  background: rgba(87, 7, 14, 0.3);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  backdrop-filter: blur(3px);
}

.hero-labels span:nth-child(1) {
  left: max(32px, calc((100vw - 1320px) / 2 + 68px));
  top: 25%;
  transform: rotate(-3deg);
}

.hero-labels span:nth-child(2) {
  right: max(42px, calc((100vw - 1320px) / 2 + 210px));
  top: 24%;
  transform: rotate(2deg);
}

.hero-labels span:nth-child(3) {
  left: max(180px, calc((100vw - 1320px) / 2 + 270px));
  top: 42%;
  transform: rotate(2.5deg);
}

.hero-labels span:nth-child(4) {
  right: max(28px, calc((100vw - 1320px) / 2 + 32px));
  top: 48%;
  transform: rotate(-2deg);
}

.hero-copy {
  position: relative;
  z-index: 9;
  width: min(100%, 1320px);
  min-height: clamp(820px, calc(100svh - 72px), 940px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 64px 48px 92px;
}

.hero h1 {
  margin-top: 14px;
  font-family: var(--serif);
  width: min(100%, 760px);
  font-size: clamp(38px, 4.2vw, 68px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 2px 0 rgba(88, 0, 6, 0.28);
}

.hero-lede {
  width: min(100%, 520px);
  margin-top: auto;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: min(11vw, 130px);
  padding: 22px 24px;
  color: rgba(23, 22, 20, 0.82);
  background: rgba(255, 248, 236, 0.92);
  border: 1px dashed rgba(12, 12, 11, 0.42);
  box-shadow: 0 18px 42px rgba(43, 29, 16, 0.12);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.78;
  text-align: left;
  align-self: flex-end;
  transform: rotate(0.7deg);
}

.hero-inquiry {
  width: min(100%, 560px);
  margin-top: auto;
  margin-bottom: 34px;
  margin-left: auto;
  margin-right: min(13vw, 190px);
  padding: 26px 30px 24px;
  color: rgba(23, 22, 20, 0.84);
  background: rgba(255, 248, 236, 0.96);
  border: 1px solid rgba(12, 12, 11, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.56),
    0 18px 42px rgba(43, 29, 16, 0.13);
  text-align: left;
  align-self: flex-end;
}

.hero-inquiry span {
  color: var(--wine);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-inquiry p {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 500;
  line-height: 1.18;
}

.hero-inquiry .hero-actions {
  margin: 18px 0 0;
  align-self: auto;
}

.hero .btn-dark {
  background: var(--black);
  color: var(--ivory);
}

.hero .btn-outline {
  color: var(--black);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 0;
  margin-bottom: 48px;
  align-self: flex-end;
  margin-right: min(11vw, 130px);
}

.region-ledger {
  background:
    var(--paper-ruled),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.region-ledger-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.region-ledger h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 500;
  line-height: 1.04;
  text-wrap: balance;
}

.region-index {
  display: grid;
  border-top: 1px solid rgba(12,12,11,0.2);
}

.region-index a {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  align-items: center;
  min-height: 86px;
  border-bottom: 1px solid rgba(12,12,11,0.2);
}

.region-index span {
  color: #8c867d;
  font-family: var(--serif);
  font-size: 26px;
}

.region-index strong {
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1.12;
}

.blog-system {
  background:
    var(--paper-ruled),
    var(--ivory);
  border-bottom: 1px solid var(--line);
}

.blog-system-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.blog-system h2,
.article-ops h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 500;
  line-height: 1.04;
  text-wrap: balance;
}

.blog-system p {
  margin-top: 22px;
  color: #514c45;
  font-size: 17px;
  line-height: 1.82;
}

.blog-clusters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(12,12,11,0.2);
  border-left: 1px solid rgba(12,12,11,0.2);
}

.blog-clusters a {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 22px;
  border-right: 1px solid rgba(12,12,11,0.2);
  border-bottom: 1px solid rgba(12,12,11,0.2);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.12;
  color: var(--black);
  transition: background 180ms ease, color 180ms ease;
}

.blog-clusters a:hover {
  background: var(--black);
  color: var(--ivory);
}

.cluster-directory {
  background:
    var(--paper-ruled),
    var(--ivory);
  border-bottom: 1px solid var(--line);
}

.topic-cluster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(12,12,11,0.18);
  border-left: 1px solid rgba(12,12,11,0.18);
}

.topic-cluster-card {
  min-height: 260px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(12,12,11,0.18);
  border-bottom: 1px solid rgba(12,12,11,0.18);
  background: rgba(255, 248, 236, 0.55);
  color: var(--black);
}

.topic-cluster-card span {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.topic-cluster-card h3 {
  margin-top: 30px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.08;
}

.topic-cluster-card p {
  margin-top: 18px;
  color: #5b554d;
  font-size: 14px;
  line-height: 1.72;
}

.topic-cluster-card:hover {
  background: #fffaf1;
}

.conversion-note {
  margin: 0 0 30px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.92), rgba(245, 240, 232, 0.78)),
    var(--ivory);
  border: 1px solid rgba(12,12,11,0.16);
}

.conversion-note h3 {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

.conversion-note p {
  margin-top: 12px;
  color: #5b554d;
  font-size: 15px;
  line-height: 1.7;
}

.conversion-note-actions {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 245px;
  border: 1px solid rgba(12,12,11,0.18);
}

.conversion-note-actions a {
  min-height: 56px;
  display: grid;
  place-items: center;
  padding: 0 20px;
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--black);
  background: rgba(255, 255, 255, 0.34);
}

.conversion-note-actions a:first-child {
  background: var(--black);
  color: var(--ivory);
}

.conversion-note-actions a + a {
  border-top: 1px solid rgba(12,12,11,0.18);
}

.article-card.planned {
  background:
    var(--paper-ruled),
    var(--ivory);
}

.article-ops {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.article-ops-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
}

.article-ops ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(12,12,11,0.2);
}

.article-ops li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid rgba(12,12,11,0.2);
}

.article-ops li strong {
  color: #8c867d;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.article-ops li span {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.12;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.proof strong {
  display: block;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.proof span {
  display: block;
  margin-top: 8px;
  color: #625d55;
  font-size: 12px;
  line-height: 1.55;
}

.hero-media {
  position: absolute;
  inset: auto;
  top: 156px;
  left: 50%;
  z-index: 7;
  width: min(315px, 38vw);
  aspect-ratio: 4 / 5;
  transform: translateX(-50%);
  overflow: visible;
  background: #2b2117;
  border: 18px solid #b6964b;
  outline: 2px solid rgba(68, 41, 16, 0.9);
  box-shadow:
    inset 0 0 0 4px rgba(255,255,255,0.24),
    inset 0 0 0 12px rgba(78, 45, 17, 0.54),
    0 32px 70px rgba(0,0,0,0.34);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: 1;
  border: 2px solid rgba(255, 226, 151, 0.5);
  pointer-events: none;
  background: none;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: 2;
  border: 8px double rgba(68, 37, 12, 0.88);
  pointer-events: none;
}

.hero-media--expert img {
  position: relative;
  z-index: 0;
  object-position: center 24%;
  filter: saturate(0.78) contrast(1.05) sepia(0.08);
}

.hero-signature {
  position: absolute;
  right: -184px;
  bottom: 18px;
  z-index: 6;
  width: 230px;
  padding: 18px 20px;
  background: #f9f2e6;
  color: var(--black);
  border: 1px dashed rgba(12, 12, 11, 0.48);
  backdrop-filter: none;
  transform: rotate(2.5deg);
}

.hero-signature span {
  color: var(--wine);
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-signature strong {
  display: block;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.hero-signature p {
  margin-top: 12px;
  color: rgba(23, 22, 20, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.hero-script {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 29%;
  transform: translateX(-50%);
  width: 112vw;
  color: rgba(255,255,255,0.34);
  font-family: var(--script);
  font-size: clamp(86px, 12vw, 188px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-shadow: 0 2px 0 rgba(88, 0, 6, 0.16);
  white-space: nowrap;
  pointer-events: none;
}

.hero-torn {
  position: absolute;
  left: -2vw;
  right: -2vw;
  bottom: -1px;
  z-index: 2;
  height: 35%;
  background:
    linear-gradient(180deg, rgba(248,242,232,0.35), #f8f2e8 76%);
  clip-path: polygon(0 11%, 8% 7%, 16% 12%, 25% 4%, 34% 13%, 45% 8%, 54% 14%, 66% 5%, 76% 12%, 88% 7%, 100% 13%, 100% 100%, 0 100%);
}

.market-proof {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.market-proof-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 72px;
  align-items: center;
}

.market-proof h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.02;
}

.fit-filter {
  background:
    var(--paper-ruled),
    #f5eddf;
  border-bottom: 1px solid var(--line);
}

.fit-filter-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: start;
}

.fit-filter h2,
.object-archive h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.03;
}

.fit-filter p,
.object-archive .section-head p {
  color: #554f47;
  font-size: 17px;
  line-height: 1.82;
}

.fit-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(12, 12, 11, 0.2);
  background: rgba(255, 250, 242, 0.58);
}

.fit-columns > div {
  padding: 30px;
}

.fit-columns > div + div {
  border-left: 1px solid rgba(12, 12, 11, 0.2);
}

.fit-columns h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.fit-columns ul {
  margin: 22px 0 0;
  padding-left: 18px;
  color: #514c45;
  line-height: 1.72;
}

.fit-columns li + li {
  margin-top: 12px;
}

.object-archive {
  background: #f8f2e8;
  border-bottom: 1px solid var(--line);
}

.object-archive-inner {
  display: grid;
  gap: 38px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(12, 12, 11, 0.2);
  border-left: 1px solid rgba(12, 12, 11, 0.2);
}

.archive-grid a {
  display: block;
  min-height: 250px;
  padding: 28px;
  color: var(--ink);
  border-right: 1px solid rgba(12, 12, 11, 0.2);
  border-bottom: 1px solid rgba(12, 12, 11, 0.2);
  background: rgba(255, 255, 255, 0.24);
  transition: background 180ms ease, transform 180ms ease;
}

.archive-grid a:hover {
  background: rgba(255, 255, 255, 0.48);
  transform: translateY(-2px);
}

.archive-grid span {
  color: var(--wine);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.archive-grid h3 {
  margin-top: 20px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.02;
}

.archive-grid p {
  margin-top: 18px;
  color: #5d564d;
  font-size: 15px;
  line-height: 1.7;
}

section {
  padding: 104px 0;
}

.proof-ledger,
.positioning-band,
.ankaufsprofil,
.private-client,
section:not(.hero):not(.proof-ledger):not(.positioning-band):not(.ankaufsprofil):not(.private-client):not(.feature-band):not(.estimate-panel):not(.cta-band):not(.principle-band) {
  position: relative;
}

.proof-ledger::before,
.positioning-band::before,
.ankaufsprofil::before,
.private-client::before {
  position: absolute;
  left: max(18px, calc((100vw - 1320px) / 2 - 52px));
  top: 32px;
  color: rgba(99, 24, 34, 0.48);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.proof-ledger::before {
  content: "I";
}

.positioning-band::before {
  content: "II";
}

.ankaufsprofil::before {
  content: "III";
}

.private-client::before {
  content: "IV";
}

.proof-ledger {
  padding: 84px 0 0;
  background:
    var(--paper-ruled),
    linear-gradient(180deg, #f8f2e8 0%, #fbfaf7 72%);
  color: var(--ink);
}

.proof-ledger-inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: end;
}

.proof-ledger-head {
  padding-bottom: 42px;
}

.proof-ledger-head h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 500;
  line-height: 1.04;
  text-wrap: balance;
}

.proof-ledger-head p {
  margin-top: 22px;
  color: #514c45;
  font-size: 17px;
  line-height: 1.82;
}

.proof-ledger-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(12, 12, 11, 0.18);
  border-left: 1px solid rgba(12, 12, 11, 0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.48), rgba(255,255,255,0.18)),
    rgba(255, 255, 255, 0.22);
  box-shadow: inset 8px 0 0 rgba(99, 24, 34, 0.08);
}

.proof-ledger-grid > div {
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid rgba(12, 12, 11, 0.18);
  border-bottom: 1px solid rgba(12, 12, 11, 0.18);
}

.proof-ledger span {
  color: #8c867d;
  font-family: var(--serif);
  font-size: 25px;
}

.proof-ledger strong {
  display: block;
  margin-top: 42px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 500;
  line-height: 1.04;
}

.proof-ledger p {
  margin-top: 14px;
  color: #5b554d;
  font-size: 13px;
  line-height: 1.65;
}

.positioning-band {
  padding: 72px 0;
  background:
    var(--paper-ruled),
    var(--ivory);
  border-bottom: 1px solid var(--line);
}

.positioning-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: start;
}

.positioning-grid h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  text-wrap: balance;
}

.positioning-grid p {
  color: #4f4a43;
  font-size: 18px;
  line-height: 1.85;
}

.positioning-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 30px;
  background: var(--line);
}

.positioning-points span {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--ivory);
  color: var(--wine);
  font-size: 11px;
  font-family: var(--condensed);
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.ankaufsprofil {
  background:
    repeating-linear-gradient(90deg, rgba(12,12,11,0.015) 0 1px, transparent 1px 12px),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.ankaufsprofil-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
}

.ankaufsprofil-copy {
  position: sticky;
  top: 118px;
  padding-top: 8px;
}

.ankaufsprofil-copy::after {
  content: none;
}

.ankaufsprofil-copy h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

.ankaufsprofil-copy p {
  margin-top: 24px;
  color: #514c45;
  font-size: 17px;
  line-height: 1.85;
}

.object-curation {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(12, 12, 11, 0.18);
  border-bottom: 1px solid rgba(12, 12, 11, 0.18);
}

.object-curation figure {
  display: grid;
  align-content: end;
  min-height: 164px;
  margin: 0;
  padding: 20px 12px 16px;
  border-right: 1px solid rgba(12, 12, 11, 0.14);
}

.object-curation figure:last-child {
  border-right: 0;
}

.object-curation img {
  justify-self: center;
  width: min(100%, 118px);
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 20px 22px rgba(42, 26, 14, 0.16)) saturate(0.86);
}

.object-curation figure:nth-child(2) img {
  width: min(100%, 140px);
}

.object-curation figure:nth-child(3) img {
  width: min(100%, 108px);
  height: 108px;
}

.object-curation figcaption {
  margin-top: 14px;
  color: rgba(99, 24, 34, 0.76);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.object-ledger {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(12, 12, 11, 0.2);
  border-left: 1px solid rgba(12, 12, 11, 0.2);
  background: rgba(255,255,255,0.24);
}

.object-ledger > div {
  position: relative;
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid rgba(12, 12, 11, 0.2);
  border-bottom: 1px solid rgba(12, 12, 11, 0.2);
  background:
    linear-gradient(180deg, rgba(251,250,247,0.28), rgba(251,250,247,0.08));
  overflow: hidden;
}

.object-ledger .ledger-visual img {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 0;
  width: min(42%, 150px);
  height: auto;
  object-fit: contain;
  opacity: 0.18;
  filter: drop-shadow(0 18px 22px rgba(42, 26, 14, 0.16)) saturate(0.78);
  transform: rotate(3deg);
  pointer-events: none;
}

.object-ledger .ledger-visual:nth-child(3) img,
.object-ledger .ledger-visual:nth-child(4) img {
  width: min(48%, 170px);
  opacity: 0.14;
}

.object-ledger .ledger-visual span,
.object-ledger .ledger-visual strong,
.object-ledger .ledger-visual p {
  position: relative;
  z-index: 1;
}

.object-ledger span {
  color: #8c867d;
  font-family: var(--serif);
  font-size: 28px;
}

.object-ledger strong {
  display: block;
  margin-top: 46px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.object-ledger p {
  margin-top: 16px;
  color: #5b554d;
  font-size: 14px;
  line-height: 1.75;
}

.private-client {
  padding: 0;
  background:
    var(--paper-ruled),
    repeating-linear-gradient(90deg, rgba(12,12,11,0.018) 0 1px, transparent 1px 9px),
    var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.private-client-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.private-client-title {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 72px 72px 0;
  border-right: 1px solid var(--line);
}

.private-client-title h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.8vw, 70px);
  font-weight: 500;
  line-height: 1.03;
  text-wrap: balance;
}

.private-client-title p {
  margin-top: 24px;
  color: #514c45;
  font-size: 17px;
  line-height: 1.82;
}

.private-client-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.private-client-list > div {
  min-height: 310px;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.38);
}

.private-client-list > div:nth-child(2n) {
  border-right: 0;
}

.private-client-list > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.private-client-list h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.08;
}

.private-client-list p {
  margin-top: 18px;
  color: #5b554d;
  font-size: 15px;
  line-height: 1.82;
}

.section-head {
  width: min(100%, 780px);
  margin-bottom: 54px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.section-head p {
  margin-top: 20px;
  color: #555049;
  font-size: 16px;
  line-height: 1.85;
}

.problem-band {
  background: var(--black);
  color: var(--ivory);
}

.problem-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.problem-band .eyebrow {
  color: var(--stone);
}

.problem-band h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.08;
}

.problem-band p {
  color: rgba(245, 240, 232, 0.78);
  font-size: 16px;
  line-height: 1.9;
}

.offer-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--black);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(12, 12, 11, 0.2);
  border-left: 1px solid rgba(12, 12, 11, 0.2);
  background: rgba(255,255,255,0.16);
}

.category-tile {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-right: 1px solid rgba(12, 12, 11, 0.2);
  border-bottom: 1px solid rgba(12, 12, 11, 0.2);
  background: transparent;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.category-tile:hover {
  background: #181511;
  color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(12, 12, 11, 0.12);
}

.category-tile .tile-num {
  color: #8c867d;
  font-family: var(--serif);
  font-size: 26px;
}

.category-tile h3 {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.08;
}

.category-tile span:last-child {
  color: var(--wine);
  font-size: 11px;
  font-family: var(--condensed);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.category-tile:hover span,
.category-tile:hover span:last-child {
  color: var(--stone);
}

.feature-band {
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 620px;
}

.feature-image {
  position: relative;
  overflow: hidden;
}

.feature-image--method {
  display: grid;
  place-items: center;
  padding: 52px;
  background:
    repeating-linear-gradient(0deg, rgba(245,240,232,0.025) 0 1px, transparent 1px 42px),
    linear-gradient(135deg, rgba(17, 17, 17, 0.94), rgba(31, 43, 39, 0.92)),
    var(--black);
}

.method-object {
  position: absolute;
  z-index: 0;
  right: -34px;
  bottom: -110px;
  width: min(46vw, 520px);
  height: auto;
  opacity: 0.28;
  filter: drop-shadow(0 34px 44px rgba(0,0,0,0.34)) saturate(0.86);
  transform: rotate(-8deg);
  pointer-events: none;
}

.method-board {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  color: var(--ivory);
}

.method-board .eyebrow {
  color: var(--stone);
}

.method-board ol {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(245, 240, 232, 0.26);
  counter-reset: method;
}

.method-board li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 104px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.22);
}

.method-board li strong {
  color: rgba(245, 240, 232, 0.42);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
}

.method-board li span {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.08;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px;
  border-left: 1px solid var(--line);
  background:
    var(--paper-ruled),
    var(--paper);
}

.feature-copy h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.98;
}

.feature-copy p {
  margin-top: 24px;
  color: #514c45;
  font-size: 16px;
  line-height: 1.85;
}

.auction-list {
  border-top: 1px solid var(--line);
}

.auction-row {
  display: grid;
  grid-template-columns: 150px 1.15fr 0.85fr 130px;
  gap: 28px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.auction-row .type {
  color: #716b63;
  font-size: 11px;
  font-family: var(--condensed);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.auction-row h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.12;
}

.auction-row p {
  color: #5b554d;
  font-size: 13px;
  line-height: 1.55;
}

.auction-row a {
  color: var(--wine);
  font-size: 11px;
  font-family: var(--condensed);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: right;
}

.estimate-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--black);
  color: var(--ivory);
}

.estimate-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px max(24px, calc((100vw - 1320px) / 2)) 76px 8vw;
}

.estimate-copy .eyebrow {
  color: var(--stone);
}

.estimate-copy h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.98;
}

.estimate-copy p {
  margin-top: 24px;
  color: rgba(245, 240, 232, 0.78);
  font-size: 16px;
  line-height: 1.8;
}

.estimate-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 54px;
  background:
    linear-gradient(135deg, rgba(247, 244, 238, 0.96), rgba(215, 208, 197, 0.82)),
    var(--ivory);
}

.estimate-dossier {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  display: grid;
  gap: 0;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: none;
}

.estimate-dossier strong {
  padding: 30px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  color: var(--black);
}

.estimate-dossier span {
  display: block;
  padding: 18px 30px;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
  color: #4f4a43;
  font-size: 13px;
  font-family: var(--condensed);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.offer-card,
.article-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  background: var(--ivory);
}

.offer-card.dark,
.article-card.dark {
  background: var(--moss);
  color: var(--ivory);
}

.offer-card h3,
.article-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.12;
}

.offer-card p,
.article-card p {
  margin-top: 16px;
  color: #5b554d;
  font-size: 14px;
  line-height: 1.75;
}

.offer-card.dark p,
.article-card.dark p {
  color: rgba(245, 240, 232, 0.78);
}

.card-link {
  margin-top: 28px;
  color: var(--wine);
  font-size: 12px;
  font-family: var(--condensed);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.offer-card.dark .card-link,
.article-card.dark .card-link {
  color: var(--stone);
}

.expert-split,
.page-split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 72px;
  align-items: center;
}

.portrait,
.page-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--stone);
}

.portrait img,
.page-image img {
  object-position: center;
}

.portrait--sascha img,
.page-image--sascha img {
  object-position: center 28%;
}

.expert-copy h2,
.page-copy h1,
.page-copy h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.02;
  text-wrap: balance;
}

.expert-copy p,
.page-copy p,
.rich-text p {
  margin-top: 22px;
  color: #4f4a43;
  font-size: 16px;
  line-height: 1.9;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.stat strong {
  display: block;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: #5d574f;
  font-size: 12px;
  line-height: 1.55;
}

.principle-band {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-inner {
  width: min(100% - 48px, 1060px);
  text-align: center;
}

.principle-inner blockquote {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

.principle-inner p {
  width: min(100%, 680px);
  margin: 26px auto 0;
  color: #5b554d;
  font-size: 17px;
  line-height: 1.85;
}

.steps {
  border-top: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 90px 0.85fr 1.35fr;
  gap: 28px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.step-num {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 38px;
}

.step h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
}

.step p {
  color: #57524b;
  font-size: 15px;
  line-height: 1.75;
}

.cta-band {
  background: var(--wine);
  color: var(--ivory);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 54px;
  align-items: center;
}

.cta-band .eyebrow {
  color: var(--stone);
}

.cta-band h2 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.06;
}

.cta-band p {
  margin-top: 18px;
  color: rgba(245, 240, 232, 0.8);
  font-size: 16px;
  line-height: 1.8;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.cta-actions a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(245, 240, 232, 0.34);
  padding: 0 18px;
  font-size: 13px;
  font-family: var(--condensed);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-hero {
  padding: 86px 0 96px;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.page-hero .narrow {
  text-align: center;
}

.page-hero h1 {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

.page-hero p {
  margin: 24px auto 0;
  width: min(100%, 720px);
  color: #514c45;
  font-size: 18px;
  line-height: 1.75;
}

.editorial-hero {
  min-height: calc(100svh - 62px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 76% 18%, rgba(255,255,255,0.58), transparent 26%),
    var(--paper-ruled),
    linear-gradient(180deg, #dceff1 0%, #fbfaf7 38%, #fbfaf7 100%);
  border-bottom: 1px solid var(--line);
}

.editorial-hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 72px;
  align-items: center;
  padding: 68px 0;
}

.editorial-hero-copy h1 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(48px, 6.8vw, 104px);
  font-weight: 500;
  line-height: 0.95;
  text-wrap: balance;
}

.editorial-hero-copy p {
  margin-top: 24px;
  width: min(100%, 650px);
  color: #514c45;
  font-size: 18px;
  line-height: 1.78;
}

.editorial-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: end center;
  overflow: hidden;
}

.editorial-visual::before {
  content: "";
  position: absolute;
  inset: 10% 8% 14%;
  border: 1px solid rgba(12, 12, 11, 0.16);
  background: rgba(255,255,255,0.22);
}

.editorial-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 38px 48px rgba(42, 26, 14, 0.18));
}

.editorial-visual--art img {
  width: min(92%, 640px);
  transform: rotate(-2deg);
}

.editorial-visual--watch img {
  width: min(72%, 430px);
  transform: rotate(2deg);
}

.editorial-visual--lamp img {
  width: min(78%, 500px);
}

.editorial-visual--rarity img {
  width: min(82%, 500px);
  transform: rotate(-3deg);
}

.editorial-visual span,
.subpage-gallery figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  color: rgba(23,22,20,0.62);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.editorial-statement {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.editorial-statement h2 {
  width: min(100%, 1100px);
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 118px);
  font-weight: 500;
  line-height: 0.95;
  text-wrap: balance;
}

.subpage-gallery {
  background:
    var(--paper-ruled),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.subpage-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(12, 12, 11, 0.18);
}

.subpage-gallery figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 34px;
  background: var(--ivory);
  overflow: hidden;
}

.subpage-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(42, 26, 14, 0.16));
}

.subpage-gallery figure:nth-child(3) img {
  object-fit: contain;
}

.subpage-gallery figcaption {
  left: 22px;
  bottom: 18px;
}

.subpage-ledger {
  background:
    repeating-linear-gradient(90deg, rgba(12,12,11,0.015) 0 1px, transparent 1px 12px),
    var(--paper);
}

.subpage-ledger-grid,
.editorial-process-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
}

.subpage-ledger-copy {
  position: sticky;
  top: 104px;
}

.subpage-ledger-copy h2,
.editorial-process h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.02;
  text-wrap: balance;
}

.subpage-ledger-copy p {
  margin-top: 24px;
  color: #514c45;
  font-size: 17px;
  line-height: 1.82;
}

.object-ledger--compact > div {
  min-height: 210px;
}

.object-ledger--compact strong {
  margin-top: 34px;
  font-size: 29px;
  line-height: 1.08;
}

.editorial-process {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.editorial-process ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(12,12,11,0.2);
}

.editorial-process li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid rgba(12,12,11,0.2);
}

.editorial-process li strong {
  color: #8c867d;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.editorial-process li span {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.12;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 74px;
  align-items: start;
}

.content-grid > *,
.rich-text,
.table-scroll {
  min-width: 0;
}

.rich-text h2 {
  margin-top: 52px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.12;
}

.rich-text h2:first-child {
  margin-top: 0;
}

.rich-text ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.rich-text li {
  position: relative;
  margin-top: 12px;
  padding-left: 24px;
  color: #4f4a43;
  line-height: 1.75;
}

.rich-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 1px;
  background: var(--wine);
}

.table-scroll {
  width: 100%;
  max-width: 100%;
  margin-top: 26px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.rich-text table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  box-sizing: border-box;
  color: #4f4a43;
  font-size: 13px;
  line-height: 1.55;
}

.rich-text thead,
.rich-text tbody {
  width: 100%;
}

.rich-text tr {
  width: 100%;
}

.rich-text th,
.rich-text td {
  width: 25%;
  padding: 16px 14px;
  border: 1px solid rgba(12, 12, 11, 0.18);
  text-align: left;
  vertical-align: top;
}

.rich-text th {
  color: var(--black);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(99, 24, 34, 0.06);
}

.rich-text td:first-child {
  color: var(--wine);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.side-panel {
  position: sticky;
  top: 104px;
  padding: 28px;
  background: var(--ivory);
  border: 1px solid var(--line);
}

.side-panel h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.12;
}

.side-panel p {
  margin-top: 14px;
  color: #5b554d;
  font-size: 14px;
  line-height: 1.7;
}

.side-panel a {
  width: 100%;
  margin-top: 18px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.faq-item p {
  margin-top: 10px;
  color: #57524b;
  font-size: 15px;
  line-height: 1.75;
}

.generated-page {
  background:
    var(--paper-ruled),
    var(--paper);
}

.content-hero {
  padding: 86px 0 74px;
  border-bottom: 1px solid var(--line);
}

.content-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 72px;
  align-items: end;
}

.content-hero h1 {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

.content-hero p {
  width: min(100%, 760px);
  margin-top: 24px;
  color: #514c45;
  font-size: 18px;
  line-height: 1.78;
}

.content-trust {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: rgba(255, 248, 236, 0.7);
  border: 1px solid var(--line);
}

.content-trust span {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(12,12,11,0.13);
  color: #4d4840;
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.content-section {
  padding: 78px 0;
  border-bottom: 1px solid var(--line);
}

.content-section h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.05;
  text-wrap: balance;
}

.content-section > .wrap > p,
.content-block p {
  margin-top: 18px;
  color: #57524b;
  font-size: 16px;
  line-height: 1.78;
}

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.content-card,
.content-link-card {
  min-height: 170px;
  padding: 26px;
  background: rgba(255, 248, 236, 0.62);
  border: 1px solid var(--line);
}

.content-card span,
.content-link-card span {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.content-card h3,
.content-link-card h3,
.content-block h3 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.content-card p,
.content-link-card p {
  margin-top: 12px;
  color: #57524b;
  font-size: 14px;
  line-height: 1.72;
}

.content-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.content-list li {
  padding: 16px 18px;
  background: rgba(255, 248, 236, 0.55);
  border: 1px solid var(--line);
  color: #504b44;
  line-height: 1.55;
}

.content-blocks {
  display: grid;
  gap: 34px;
  margin-top: 36px;
}

.content-block {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.content-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.content-link-card {
  display: block;
  color: inherit;
}

.content-link-card:hover {
  border-color: rgba(99, 24, 34, 0.38);
}

.photo-placeholder-section h2 {
  max-width: 760px;
}

.photo-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.photo-placeholder {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,248,236,0.92), rgba(237,226,205,0.54)),
    var(--paper-ruled);
  border: 1px dashed rgba(99, 24, 34, 0.28);
}

.photo-placeholder::before {
  content: attr(data-photo-placeholder);
  position: absolute;
  left: 22px;
  bottom: 22px;
  color: rgba(72, 57, 45, 0.58);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.photo-placeholder span {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(12,12,11,0.12);
}

.photo-placeholder i {
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  right: -10%;
  top: -18%;
  border: 1px solid rgba(99, 24, 34, 0.18);
  border-radius: 50%;
}

.object-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.object-gallery-item {
  margin: 0;
  background: rgba(255, 248, 236, 0.62);
  border: 1px solid var(--line);
}

.object-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}

.object-gallery-item figcaption {
  padding: 14px 16px 16px;
  color: #57524b;
  font-size: 13px;
  line-height: 1.55;
}

.contact-section {
  background: var(--ivory);
}

.private-inquiry-hero {
  min-height: calc(100svh - 62px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 16%, rgba(255,255,255,0.52), transparent 28%),
    var(--paper-ruled),
    linear-gradient(180deg, #f8f2e8 0%, #fbfaf7 100%);
  border-bottom: 1px solid var(--line);
}

.private-inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 78px;
  align-items: center;
  padding: 76px 0;
}

.private-inquiry-grid h1 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 108px);
  font-weight: 500;
  line-height: 0.95;
  text-wrap: balance;
}

.private-inquiry-grid p {
  margin-top: 24px;
  width: min(100%, 680px);
  color: #514c45;
  font-size: 18px;
  line-height: 1.78;
}

.private-inquiry-card {
  padding: 32px;
  background: rgba(255, 248, 236, 0.82);
  border: 1px solid rgba(12,12,11,0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55);
}

.private-inquiry-card span {
  color: var(--wine);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.private-inquiry-card strong {
  display: block;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.05;
}

.private-inquiry-card p {
  width: auto;
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.82;
}

.inquiry-register,
.private-form-section,
.faq-section {
  background:
    var(--paper-ruled),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.inquiry-register-grid,
.private-form-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 76px;
  align-items: start;
}

.inquiry-register h2,
.private-form-copy h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.02;
  text-wrap: balance;
}

.inquiry-register ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(12,12,11,0.2);
}

.inquiry-register li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid rgba(12,12,11,0.2);
}

.inquiry-register li strong {
  color: #8c867d;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.inquiry-register li span {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.12;
}

.sale-process {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.34), rgba(255,255,255,0)),
    var(--paper-ruled),
    #f4eadc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sale-process--compact {
  border-top: 0;
}

.sale-process-inner {
  display: grid;
  gap: 40px;
}

.sale-process-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: end;
}

.sale-process-head h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(40px, 5.2vw, 76px);
  font-weight: 500;
  line-height: 1.02;
  text-wrap: balance;
}

.sale-process-head p {
  color: #514c45;
  font-size: 17px;
  line-height: 1.82;
}

.process-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(12,12,11,0.22);
  border-left: 1px solid rgba(12,12,11,0.22);
}

.process-columns > div {
  min-height: 280px;
  padding: 26px 22px;
  border-right: 1px solid rgba(12,12,11,0.22);
  border-bottom: 1px solid rgba(12,12,11,0.22);
  background: rgba(255, 249, 240, 0.42);
}

.process-columns span,
.route-grid span {
  color: var(--wine);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.process-columns h3,
.route-grid h3 {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.05;
}

.process-columns p,
.route-grid p {
  margin-top: 16px;
  color: #5b554d;
  font-size: 14px;
  line-height: 1.72;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.route-grid article {
  padding: 28px;
  background: rgba(255, 250, 242, 0.76);
  border: 1px dashed rgba(12,12,11,0.32);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.58);
}

.route-grid article:nth-child(2) {
  transform: translateY(14px);
}

.software-note {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
  padding: 24px 28px;
  background: rgba(255, 250, 242, 0.7);
  border-top: 1px solid rgba(12,12,11,0.18);
  border-bottom: 1px solid rgba(12,12,11,0.18);
}

.software-note span {
  color: var(--wine);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.software-note p {
  color: #514c45;
  font-size: 15px;
  line-height: 1.78;
}

.process-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.private-form-copy {
  position: sticky;
  top: 104px;
}

.private-form-copy p {
  margin-top: 24px;
  color: #514c45;
  font-size: 17px;
  line-height: 1.82;
}

.private-form-panel {
  background: rgba(255,255,255,0.26);
}

.estimate-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: calc(100svh - 72px);
  border-bottom: 1px solid var(--line);
}

.estimate-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px 6vw 76px max(24px, calc((100vw - 1320px) / 2));
}

.estimate-hero-copy h1 {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 500;
  line-height: 0.96;
  text-wrap: balance;
}

.estimate-hero-copy p {
  margin-top: 24px;
  color: #514c45;
  font-size: 18px;
  line-height: 1.75;
}

.estimate-hero-media {
  min-height: 620px;
  overflow: hidden;
}

.submission-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 76px;
  align-items: start;
}

.submission-list {
  border-top: 1px solid var(--line);
}

.submission-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.submission-item strong {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.submission-item h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
}

.submission-item p {
  margin-top: 8px;
  color: #5b554d;
  font-size: 14px;
  line-height: 1.7;
}

.form-panel {
  padding: 34px;
  border: 1px solid var(--line);
  background: transparent;
}

.form-panel h2 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-methods a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-weight: 500;
}

.contact-methods a.phone-priority {
  align-items: center;
  margin-bottom: 8px;
  padding: 22px 0;
  color: var(--black);
  border-top: 1px solid rgba(99, 24, 34, 0.28);
  border-bottom: 1px solid rgba(99, 24, 34, 0.28);
}

.contact-methods a.phone-priority span {
  color: var(--wine);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-methods a.phone-priority strong {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1;
}

.lead-form {
  display: grid;
  gap: 22px;
}

.fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
}

.fields--simple {
  gap: 18px 22px;
}

.field.full {
  grid-column: 1 / -1;
}

.situation-select {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(12, 12, 11, 0.18);
  border-left: 1px solid rgba(12, 12, 11, 0.18);
}

.situation-select span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  border-right: 1px solid rgba(12, 12, 11, 0.18);
  border-bottom: 1px solid rgba(12, 12, 11, 0.18);
  color: #514c45;
  background: rgba(255, 250, 242, 0.45);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.form-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #6b645a;
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
  padding: 10px 2px;
  font-size: 15px;
}

textarea {
  min-height: 112px;
  line-height: 1.6;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--wine);
}

.form-note {
  color: #6c665e;
  font-size: 12px;
  line-height: 1.7;
}

.form-error {
  display: none;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(117, 25, 31, 0.28);
  background: rgba(117, 25, 31, 0.06);
  color: var(--wine);
  font-size: 14px;
  line-height: 1.6;
}

.form-has-error .form-error {
  display: block;
}

.site-footer {
  background: var(--black);
  color: var(--ivory);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.14);
}

.footer-grid p,
.footer-grid a {
  color: rgba(245, 240, 232, 0.72);
  font-size: 13px;
  line-height: 1.8;
}

.footer-grid h2 {
  margin-bottom: 16px;
  color: rgba(245, 240, 232, 0.48);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin-bottom: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  color: rgba(245, 240, 232, 0.48);
  font-size: 11px;
  flex-wrap: wrap;
}

.mobile-bar {
  display: none;
  position: fixed;
  z-index: 30;
  left: 0;
  right: 0;
  bottom: 0;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
  color: var(--ivory);
  border-top: 1px solid rgba(245, 240, 232, 0.18);
}

.mobile-bar a {
  min-height: 58px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-family: var(--condensed);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mobile-bar a + a {
  border-left: 1px solid rgba(245, 240, 232, 0.18);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .hero,
  .problem-grid,
  .expert-split,
  .page-split,
  .feature-grid,
  .estimate-panel,
  .estimate-hero,
  .submission-grid,
  .cta-grid,
  .content-grid,
  .contact-grid,
  .positioning-grid,
  .private-client-grid,
  .ankaufsprofil-grid,
  .editorial-hero-grid,
  .subpage-ledger-grid,
  .editorial-process-grid,
  .private-inquiry-grid,
  .sale-process-head,
  .inquiry-register-grid,
  .private-form-grid,
  .region-ledger-grid,
  .blog-system-grid,
  .article-ops-grid,
  .fit-filter-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: clamp(820px, calc(100svh - 68px), 900px);
    padding: 48px 24px 74px;
  }

  .process-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-columns > div {
    min-height: 230px;
  }

  .route-grid {
    grid-template-columns: 1fr;
  }

  .route-grid article:nth-child(2) {
    transform: none;
  }

  .hero-media {
    top: 168px;
    width: min(285px, 46vw);
  }

  .hero-signature {
    right: -96px;
    bottom: 28px;
    width: 190px;
    padding: 16px;
  }

  .hero-script {
    top: 30%;
    width: 118vw;
    font-size: clamp(76px, 12.4vw, 138px);
  }

  .hero-clouds {
    top: 49%;
    height: 410px;
  }

  .hero-angel {
    left: 18px;
    top: 59%;
    width: clamp(120px, 20vw, 185px);
    opacity: 0.92;
  }

  .hero-porcelain {
    left: -46px;
    top: 61%;
    width: min(310px, 32vw);
    opacity: 0.92;
  }

  .hero-labels span:nth-child(2) {
    right: 48px;
  }

  .hero-labels span:nth-child(3) {
    left: 150px;
  }

  .offer-grid,
  .article-grid,
  .archive-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-copy,
  .estimate-copy,
  .estimate-hero-copy {
    padding: 56px 32px;
  }

  .feature-copy {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .auction-row {
    grid-template-columns: 120px 1fr;
  }

  .auction-row p,
  .auction-row a {
    grid-column: 2;
    text-align: left;
  }

  .side-panel {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-ledger-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-ledger-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .proof-ledger-head {
    padding-bottom: 0;
  }

  .private-client-title {
    min-height: auto;
    padding: 72px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ankaufsprofil-copy {
    position: static;
  }

  .object-ledger {
    grid-template-columns: 1fr 1fr;
  }

  .region-index a {
    grid-template-columns: 120px 1fr;
  }

  .blog-clusters {
    grid-template-columns: repeat(2, 1fr);
  }

  .topic-cluster-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .conversion-note {
    grid-template-columns: 1fr;
  }

  .conversion-note-actions {
    width: 100%;
    min-width: 0;
  }

  .editorial-hero {
    min-height: auto;
  }

  .editorial-hero-grid {
    gap: 42px;
    padding: 64px 0;
  }

  .editorial-visual {
    min-height: 430px;
  }

  .subpage-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .subpage-ledger-copy {
    position: static;
  }

  .private-inquiry-hero {
    min-height: auto;
  }

  .private-inquiry-grid {
    gap: 42px;
    padding: 64px 0;
  }

  .private-form-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 58px;
  }

  .wrap,
  .narrow {
    width: min(100% - 32px, 1320px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 21px;
  }

  .brand-sub {
    font-size: 9px;
  }

  .phone-link,
  .header-cta {
    display: none;
  }

  .topic-cluster-grid,
  .blog-clusters {
    grid-template-columns: 1fr;
  }

  .topic-cluster-card {
    min-height: 220px;
    padding: 24px;
  }

  .topic-cluster-card h3 {
    font-size: 27px;
  }

  .conversion-note {
    padding: 22px;
  }

  .conversion-note-actions a {
    min-height: 54px;
  }

  .hero h1 {
    font-size: clamp(34px, 12vw, 58px);
  }

  .hero {
    min-height: 880px;
  }

  .hero-copy {
    min-height: 880px;
    padding-top: 38px;
  }

  .hero-media {
    top: 190px;
    width: min(224px, 66vw);
    border-width: 13px;
  }

  .hero-media::after {
    inset: -19px;
  }

  .hero-media::before {
    inset: -12px;
    border-width: 5px;
  }

  .hero-signature {
    right: 50%;
    bottom: -102px;
    width: min(250px, 78vw);
    transform: translateX(50%) rotate(1.5deg);
  }

  .hero-signature p {
    display: none;
  }

  .hero-script {
    top: 32%;
    width: 148vw;
    font-size: clamp(56px, 19vw, 96px);
  }

  .hero-clouds {
    top: 50%;
    width: 168vw;
    height: 360px;
  }

  .hero-angel {
    left: -18px;
    top: 60%;
    width: min(140px, 34vw);
    opacity: 0.72;
  }

  .hero-porcelain {
    left: -84px;
    top: 66%;
    width: min(210px, 58vw);
    opacity: 0.58;
    transform: rotate(-4deg);
  }

  .hero-labels {
    display: none;
  }

  .hero-landscape {
    top: 64%;
    height: 36%;
    object-position: center 22%;
  }

  .hero-lede {
    width: min(100%, 420px);
    margin-bottom: 22px;
    margin-right: 0;
    padding: 18px 18px;
    text-align: center;
    align-self: center;
    transform: none;
  }

  .hero-actions {
    justify-content: center;
    align-self: center;
    margin-right: 0;
    margin-bottom: 24px;
  }

  .hero-inquiry {
    width: min(100%, 420px);
    margin-right: 0;
    margin-bottom: 22px;
    padding: 18px;
    align-self: center;
    text-align: center;
  }

  .hero-inquiry .hero-actions {
    justify-content: center;
  }

  .hero-proof,
  .stats,
  .fields,
	  .process-columns,
	  .route-grid,
	  .software-note,
	  .region-ledger-grid,
  .blog-system-grid,
  .article-ops-grid,
  .subpage-ledger-grid,
  .editorial-process-grid,
  .private-inquiry-grid,
  .inquiry-register-grid,
  .private-form-grid,
  .fit-filter-grid,
  .fit-columns,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .fit-columns > div + div {
    border-left: 0;
    border-top: 1px solid rgba(12, 12, 11, 0.2);
  }

  .situation-select {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-methods a.phone-priority {
    align-items: flex-start;
    flex-direction: column;
  }

  .offer-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .process-columns > div {
    min-height: auto;
  }

  .route-grid article:nth-child(2) {
    transform: none;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-tile {
    min-height: 190px;
    padding: 18px;
  }

  .category-tile h3 {
    font-size: 24px;
  }

  .positioning-points {
    grid-template-columns: 1fr;
  }

  .region-index a,
  .article-ops li {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    padding: 18px 0;
  }

  .blog-clusters {
    grid-template-columns: 1fr;
  }

  .editorial-hero-grid {
    padding: 44px 0 58px;
  }

  .editorial-hero-copy h1 {
    font-size: clamp(44px, 14vw, 68px);
  }

  .editorial-visual {
    min-height: 320px;
  }

  .editorial-visual img {
    width: min(100%, 360px);
  }

  .editorial-statement h2 {
    font-size: clamp(42px, 13vw, 68px);
  }

  .subpage-gallery-grid {
    grid-template-columns: 1fr;
  }

  .subpage-gallery figure {
    min-height: 280px;
  }

  .editorial-process li {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    padding: 18px 0;
  }

  .private-inquiry-grid h1 {
    font-size: clamp(44px, 14vw, 68px);
  }

  .private-inquiry-card {
    padding: 24px;
  }

  .inquiry-register li {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    padding: 18px 0;
  }

  .hero-signature p {
    display: none;
  }

  .proof-ledger-grid,
  .private-client-list,
  .object-ledger,
  .market-proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-ledger {
    padding-top: 62px;
  }

  .proof-ledger-grid > div,
  .private-client-list > div {
    min-height: auto;
    border-right: 0;
  }

  .proof-ledger strong {
    margin-top: 28px;
  }

  .private-client-list > div:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .private-client-list > div:last-child {
    border-bottom: 0;
  }

  .object-ledger > div {
    min-height: auto;
  }

  .object-curation {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .object-curation figure {
    min-height: 118px;
    grid-template-columns: 120px 1fr;
    align-items: center;
    align-content: center;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(12, 12, 11, 0.14);
  }

  .object-curation figure:last-child {
    border-bottom: 0;
  }

  .object-curation img,
  .object-curation figure:nth-child(2) img,
  .object-curation figure:nth-child(3) img {
    width: 96px;
    height: 86px;
  }

  .object-curation figcaption {
    margin-top: 0;
    text-align: left;
  }

  .object-ledger .ledger-visual img {
    right: 12px;
    top: 12px;
    width: min(34%, 118px);
    opacity: 0.09;
  }

  .object-ledger strong {
    margin-top: 28px;
  }

  .feature-image--method,
  .estimate-image {
    padding: 32px 18px;
  }

  .method-object {
    width: min(62vw, 260px);
    opacity: 0.12;
  }

  .method-object {
    right: -76px;
    bottom: -82px;
  }

  .method-board li {
    grid-template-columns: 52px 1fr;
    min-height: 86px;
  }

  .estimate-dossier strong {
    font-size: 34px;
  }

  .auction-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .auction-row p,
  .auction-row a {
    grid-column: auto;
  }

  .estimate-image {
    min-height: 320px;
    order: -1;
  }

  .estimate-hero-media {
    min-height: 360px;
    order: -1;
  }

  .submission-item {
    grid-template-columns: 48px 1fr;
  }

  .form-panel {
    padding: 24px;
  }

  section {
    padding: 76px 0;
  }

  .step {
    grid-template-columns: 54px 1fr;
  }

  .step p {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mobile-bar {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
