
:root {
  --ink: #171713;
  --ink-soft: #34342e;
  --paper: #f4f0e8;
  --paper-deep: #e8e1d5;
  --white: #fffdf8;
  --line: #cec6b8;
  --muted: #6d685f;
  --accent: #8c3d32;
  --accent-light: #c98372;
  --gold: #b69656;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 26px 70px rgba(40, 32, 21, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 18px; top: -80px; z-index: 200; padding: 12px 18px; background: var(--white); color: var(--ink); border-radius: 8px; }
.skip-link:focus { top: 18px; }

.site-header { position: sticky; top: 0; z-index: 80; border-bottom: 1px solid rgba(23, 23, 19, 0.1); background: rgba(244, 240, 232, 0.94); backdrop-filter: blur(18px); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-mark { width: 46px; height: 46px; display: grid; place-items: center; overflow: hidden; border-radius: 5px; background: #000; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 11px; letter-spacing: 0.04em; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a { text-decoration: none; font-size: 14px; font-weight: 650; }
.desktop-nav a:hover { color: var(--accent); }
.desktop-nav .nav-contact { padding: 11px 18px; border: 1px solid var(--ink); border-radius: 999px; }
.desktop-nav .nav-contact:hover { background: var(--ink); color: var(--paper); }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-content: center; gap: 5px; cursor: pointer; list-style: none; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 19px; height: 1.5px; background: var(--ink); }
.mobile-menu nav { position: absolute; top: 56px; right: 0; width: min(310px, calc(100vw - 32px)); padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow); display: grid; }
.mobile-menu nav a { padding: 10px 8px; text-decoration: none; border-bottom: 1px solid rgba(23, 23, 19, 0.08); }
.mobile-menu nav a:last-child { border-bottom: 0; }

.eyebrow { margin: 0 0 13px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: 0.18em; line-height: 1.3; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(3.2rem, 7vw, 6.8rem); font-weight: 680; }
h2 { font-size: clamp(2.15rem, 4.3vw, 4rem); font-weight: 640; }
h3 { font-size: clamp(1.45rem, 2.4vw, 2rem); font-weight: 650; }
p { color: var(--ink-soft); }
.hero-lead { max-width: 760px; color: var(--ink-soft); font-size: clamp(1.18rem, 2vw, 1.55rem); line-height: 1.45; }
.large-copy { color: var(--ink); font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.5; }
.small-copy { color: var(--muted); font-size: 14px; }
.section { padding: 110px 0; }
.section-soft { background: var(--paper-deep); }
.section-dark { background: var(--ink); color: var(--paper); }
.section-dark p { color: #d6d0c5; }
.section-dark .eyebrow { color: var(--accent-light); }
.section-heading { max-width: 780px; margin-bottom: 52px; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading p:last-child { margin-bottom: 0; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.heading-row { max-width: none; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr); gap: 80px; align-items: end; }
.heading-row > p { margin: 0; }
.content-split { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(48px, 9vw, 120px); align-items: start; }
.content-split p:last-child { margin-bottom: 0; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 20px; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-size: 14px; font-weight: 750; line-height: 1.2; cursor: pointer; transition: transform 160ms ease, background 160ms ease, color 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: var(--paper); }
.button-dark:hover { background: var(--accent); }
.button-outline { border-color: var(--line); background: transparent; color: var(--ink); }
.button-outline:hover { border-color: var(--ink); background: var(--white); }
.button-light { background: var(--paper); color: var(--ink); }
.button-light:hover { background: var(--white); }
.button-ghost-light { border-color: rgba(255,255,255,0.35); color: var(--paper); }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; color: var(--ink); text-decoration: none; font-weight: 750; border-bottom: 1px solid var(--ink); }
.text-link:hover { color: var(--accent); border-color: var(--accent); }
.light-link { color: var(--paper); border-color: var(--paper); }

.home-hero { padding: 84px 0 96px; overflow: hidden; }
.home-hero-grid { min-height: 670px; display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr); gap: clamp(44px, 7vw, 100px); align-items: center; }
.home-hero-simple { min-height: 540px; grid-template-columns: minmax(0, 900px); }
.home-hero-copy h1 { max-width: 720px; margin-bottom: 26px; }
.home-hero-copy h1 span { display: block; margin-top: 14px; color: var(--accent); font-size: 0.47em; letter-spacing: -0.025em; }
.home-hero-copy .hero-lead { max-width: 620px; }
.hero-note { max-width: 600px; color: var(--muted); }
.projects-section { border-top: 1px solid var(--line); }
.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.project-card { min-height: 620px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.project-card-wide { min-height: 480px; grid-column: span 2; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr); }
.project-card figure { height: 280px; min-height: 280px; margin: 0; display: grid; place-items: center; overflow: hidden; background: #ddd5c7; }
.project-card figure img { width: 100%; height: 100%; object-fit: contain; }
.project-blackwhite figure, .project-akt figure { background: #0d0d0d; }
.project-card-copy { padding: clamp(28px, 3.5vw, 42px); display: flex; flex-direction: column; flex: 1; }
.project-card-copy h3 { margin-bottom: 18px; }
.project-card-copy > p:not(.eyebrow) { max-width: 640px; }
.project-card-links { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: auto; padding-top: 28px; }
.project-card-links a { color: var(--ink); font-size: 14px; font-weight: 750; text-underline-offset: 5px; }
.project-card-links a:hover { color: var(--accent); }
.project-passbild figure, .project-bewerbung figure { background: #f7f7f7; }
.project-price { margin: -7px 0 15px; color: var(--accent) !important; font-size: 1.35rem; font-weight: 800; }
.project-zen { background: #25221d; color: var(--paper); }
.project-zen p { color: #dad3c6; }
.project-zen .eyebrow { color: #d1b77f; }
.project-zen .project-card-links a { color: var(--paper); }
.project-zen figure { background: #eeebe4; }
.career-card-art { min-height: 290px; position: relative; padding: 42px; background: linear-gradient(135deg, #d7c7b5, #ede7dc 50%, #b66555); overflow: hidden; }
.career-card-art span, .career-card-art strong { display: block; position: relative; z-index: 1; }
.career-card-art span { font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.career-card-art strong { margin-top: 10px; font-size: clamp(3.4rem, 8vw, 6rem); letter-spacing: -0.07em; line-height: 0.9; }
.career-card-art i { position: absolute; width: 230px; height: 230px; right: -35px; bottom: -65px; border: 35px solid rgba(255,255,255,0.52); border-radius: 50%; }

.artist-section { background: var(--white); }
.artist-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(50px, 10vw, 140px); }
.artist-statement h2 { max-width: 540px; }
.artist-copy { padding-top: 28px; }
.value-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.value-grid article { min-height: 280px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,0.34); }
.value-grid h3 { margin: 28px 0 14px; font-size: 1.45rem; }
.value-grid p { margin-bottom: 0; }
.value-mark { display: block; width: 42px; height: 42px; border: 1px solid var(--accent); border-radius: 50%; position: relative; }
.value-mark::after { content: ""; position: absolute; width: 13px; height: 13px; left: 13px; top: 13px; border-radius: 50%; background: var(--accent); }
.location-band { background: var(--accent); color: var(--white); }
.location-band p { color: #f1ded8; }
.location-band .eyebrow { color: #f3c0b4; }
.location-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr); gap: clamp(50px, 10vw, 130px); align-items: start; }

.project-hero { padding: 72px 0 0; }
.project-hero-grid { min-height: 610px; display: grid; grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr); gap: clamp(50px, 8vw, 110px); align-items: center; }
.project-hero-copy { padding: 40px 0; }
.project-hero-copy h1 { font-size: clamp(3.2rem, 6.3vw, 6.1rem); margin-bottom: 28px; }
.project-hero-image { height: 570px; margin: 0; display: grid; place-items: center; overflow: hidden; border-radius: var(--radius); background: #111; box-shadow: var(--shadow); }
.project-hero-image img { width: 100%; height: 100%; object-fit: contain; }
.project-hero-image.light-image { background: #f2efe9; }
.project-hero-art { min-height: 520px; border-radius: var(--radius); overflow: hidden; background: var(--ink); box-shadow: var(--shadow); }
.experience-line { min-height: 90px; margin-top: 42px; padding: 24px 0; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.experience-line span { color: var(--muted); }
.experience-line strong { font-size: clamp(1.05rem, 2vw, 1.3rem); }
.career-hero-art { min-height: 520px; padding: 54px; position: relative; overflow: hidden; color: var(--paper); background: linear-gradient(145deg, #101010 0%, #3c3933 58%, #995246 100%); }
.career-hero-art span { font-size: 12px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.career-hero-art strong { display: block; margin-top: 28px; font-size: clamp(2.5rem, 5vw, 4.7rem); line-height: 1.02; letter-spacing: -0.05em; }
.career-hero-art i { position: absolute; width: 280px; height: 280px; right: -70px; bottom: -90px; border: 44px solid rgba(255,255,255,0.11); border-radius: 50%; }

.offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.offer-card { min-height: 410px; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.offer-card.featured { background: var(--ink); color: var(--paper); }
.offer-card.featured p, .offer-card.featured li { color: #d9d1c5; }
.offer-card.featured .eyebrow { color: var(--accent-light); }
.price { margin: 22px 0; color: var(--accent) !important; font-size: clamp(2.6rem, 5vw, 4.7rem); font-weight: 750; line-height: 1; letter-spacing: -0.055em; }
.clean-list { margin: 0 0 22px; padding-left: 20px; color: var(--ink-soft); }
.image-copy-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr); gap: clamp(48px, 9vw, 120px); align-items: center; }
.mini-gallery { min-height: 560px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.mini-gallery img { width: 100%; height: 100%; object-fit: contain; background: #efede8; border-radius: 16px; }
.sw-gallery { background: #101010; padding: 14px; border-radius: var(--radius); }
.sw-gallery img { background: #101010; }
.single-portrait { max-width: 560px; margin: 0; overflow: hidden; border-radius: var(--radius); background: #101010; box-shadow: var(--shadow); }
.single-portrait img { width: 100%; height: auto; }
.uniform-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.uniform-gallery figure { height: 470px; margin: 0; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.uniform-gallery img { width: 100%; height: 100%; object-fit: contain; }
.spec-image { min-height: 540px; margin: 0; display: grid; place-items: center; overflow: hidden; border-radius: var(--radius); background: #050505; }
.spec-image img { width: 100%; height: 100%; object-fit: contain; }
.process-band { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid article { min-height: 250px; padding: 38px; border-right: 1px solid var(--line); }
.process-grid article:last-child { border-right: 0; }
.process-grid h3 { font-size: 1.45rem; }
.project-cta { background: var(--ink); color: var(--paper); }
.project-cta p { color: #d3ccc0; }
.project-cta .eyebrow { color: var(--accent-light); }
.cta-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(50px, 10vw, 130px); align-items: center; }
.link-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.link-card-grid a { min-height: 150px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: 18px; background: var(--white); text-decoration: none; }
.link-card-grid a:hover { border-color: var(--accent); transform: translateY(-2px); }
.link-card-grid span { color: var(--muted); font-size: 13px; }
.link-card-grid strong { font-size: clamp(1.25rem, 2.5vw, 1.8rem); overflow-wrap: anywhere; }
.dark-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: #46433e; border: 1px solid #46433e; }
.dark-card-grid article { min-height: 260px; padding: 38px; background: #1f1f1b; }
.dark-card-grid h3 { color: var(--paper); }

.price-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.price-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.price-table th, .price-table td { padding: 20px 22px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.price-table th { background: var(--ink); color: var(--paper); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.price-table td:last-child { white-space: nowrap; font-weight: 800; }
.price-table tr:last-child td { border-bottom: 0; }
.table-note { margin-top: 16px; color: var(--muted); font-size: 14px; }
.zen-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.zen-grid article { overflow: hidden; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.zen-grid img { width: 100%; aspect-ratio: 1; object-fit: contain; background: #131311; }
.zen-grid article > div { padding: 28px; }
.zen-grid h3 { font-size: 1.55rem; }
.enso-specimen { min-height: 540px; display: grid; place-items: center; border-radius: var(--radius); background: radial-gradient(circle at 50% 50%, #25231f, #090909 74%); overflow: hidden; }
.enso-specimen span { display: block; width: min(70%, 380px); aspect-ratio: 1; border: clamp(18px, 3vw, 36px) solid var(--gold); border-right-color: rgba(182,150,86,0.18); border-radius: 50%; transform: rotate(-15deg); box-shadow: 0 0 70px rgba(182,150,86,0.2); }
.feature-list { margin: 30px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.feature-list li { padding: 16px 0; display: grid; grid-template-columns: 150px 1fr; gap: 20px; border-bottom: 1px solid var(--line); }
.feature-list span { color: var(--muted); }

.interior-hero { padding: 90px 0 70px; border-bottom: 1px solid var(--line); }
.interior-hero-grid { min-height: 500px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr); gap: clamp(48px, 10vw, 130px); align-items: center; }
.interior-hero h1 { margin-bottom: 28px; }
.about-monogram { min-height: 420px; display: grid; place-items: center; border-radius: var(--radius); background: var(--ink); color: var(--paper); overflow: hidden; }
.about-monogram span { font-size: clamp(6rem, 16vw, 13rem); font-weight: 800; letter-spacing: -0.1em; }
.about-monogram img { width: min(62%, 280px); height: auto; object-fit: contain; }
.about-enso { background: radial-gradient(circle at 50% 50%, #4c463c, #eee7db 75%); }
.about-enso span { border-color: var(--accent); border-right-color: rgba(140,61,50,0.13); box-shadow: none; }
.contact-hero-card { min-height: 360px; padding: 42px; display: flex; flex-direction: column; justify-content: flex-end; border-radius: var(--radius); background: linear-gradient(145deg, var(--ink), #4c443a); color: var(--paper); }
.contact-hero-card span { margin-bottom: 14px; color: var(--accent-light); font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.contact-hero-card strong { font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1.1; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr); gap: 20px; }
.contact-card { min-height: 480px; padding: clamp(30px, 5vw, 54px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.contact-card address { margin: 30px 0; font-style: normal; font-size: 1.15rem; }
.primary-contact { background: var(--ink); color: var(--paper); }
.primary-contact p { color: #d6cfc3; }
.primary-contact .eyebrow { color: var(--accent-light); }
.contact-actions { margin: 30px 0; display: grid; border-top: 1px solid #47443e; }
.contact-actions a { padding: 16px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid #47443e; text-decoration: none; }
.contact-actions span { color: #a9a399; }
.contact-actions strong { overflow-wrap: anywhere; text-align: right; }
.map-consent { min-height: 420px; padding: clamp(30px, 6vw, 72px); display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.map-consent > p { max-width: 760px; }
.map-frame { height: 520px; overflow: hidden; border-radius: var(--radius); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.legal-hero { padding: 92px 0 58px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { margin-bottom: 18px; font-size: clamp(3.3rem, 7vw, 6rem); }
.legal-content { max-width: 900px; }
.legal-content section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.legal-content section:first-child { padding-top: 0; }
.legal-content section:last-child { border-bottom: 0; }
.legal-content h2 { margin-bottom: 14px; font-size: clamp(1.45rem, 3vw, 2rem); letter-spacing: -0.02em; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content a { text-underline-offset: 4px; }
.not-found { min-height: 70vh; padding: 120px 0; display: grid; align-items: center; }
.not-found .shell { max-width: 820px; }

.site-footer { background: #10100e; color: var(--paper); }
.site-footer p, .site-footer address { color: #bdb6aa; }
.footer-sites { padding: 90px 0; border-bottom: 1px solid #35342f; background: #191916; }
.footer-sites-heading { max-width: 760px; margin-bottom: 38px; }
.footer-sites-heading h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.footer-sites-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.footer-sites-grid a { min-height: 170px; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid #3b3933; border-radius: 16px; text-decoration: none; background: #20201c; }
.footer-sites-grid a:hover { border-color: var(--accent-light); background: #282721; }
.footer-sites-grid span { color: #a59f94; font-size: 12px; }
.footer-sites-grid strong { font-size: 15px; overflow-wrap: anywhere; }
.footer-sites-grid small { color: var(--accent-light); }
.footer-grid { padding: 78px 0 54px; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 50px; }
.footer-grid h2 { margin-bottom: 18px; color: var(--paper); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-grid nav { display: grid; gap: 10px; }
.footer-grid a { color: #cfc8bc; text-decoration: none; font-size: 14px; }
.footer-grid a:hover { color: var(--accent-light); }
.footer-grid address { font-style: normal; font-size: 14px; }
.footer-logo { width: 58px; height: 58px; margin-bottom: 22px; display: grid; place-items: center; overflow: hidden; border: 1px solid #4c4942; border-radius: 5px; background: #000; }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-bottom { padding: 22px 0 36px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid #35342f; color: #8e887e; font-size: 12px; }
.sticky-contact { display: none; }

@media (max-width: 1050px) {
  .home-hero-grid, .project-hero-grid { grid-template-columns: 1fr; }
  .home-hero-grid { min-height: 0; }
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-hero-image { height: min(72vw, 620px); }
  .project-hero-art { min-height: 480px; }
  .footer-sites-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .shell { width: min(calc(100% - 32px), var(--max)); }
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .section { padding: 82px 0; }
  .home-hero { padding-top: 58px; }
  .home-hero-copy h1 { font-size: clamp(3.3rem, 14vw, 5.8rem); }
  .heading-row, .content-split, .artist-grid, .location-grid, .cta-grid, .image-copy-grid, .interior-hero-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .project-card-wide { grid-column: auto; grid-template-columns: 1fr; min-height: 620px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 560px; }
  .project-card figure { height: 280px; min-height: 280px; }
  .offer-grid, .value-grid, .zen-grid { grid-template-columns: 1fr; }
  .uniform-gallery { grid-template-columns: 1fr; }
  .uniform-gallery figure { height: min(120vw, 520px); }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid article:last-child { border-bottom: 0; }
  .dark-card-grid { grid-template-columns: 1fr; }
  .mini-gallery { min-height: 520px; }
  .interior-hero-grid { min-height: 0; }
  .about-monogram { min-height: 340px; }
  .footer-sites-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-list li { grid-template-columns: 120px 1fr; }
}

@media (max-width: 620px) {
  .header-inner { min-height: 70px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-copy strong { font-size: 13px; }
  .brand-copy small { font-size: 9px; }
  h2 { font-size: clamp(2rem, 11vw, 3.1rem); }
  .home-hero-copy h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .project-hero { padding-top: 50px; }
  .project-hero-grid { gap: 32px; }
  .project-hero-copy h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .project-hero-image { height: min(110vw, 620px); }
  .project-hero-art, .career-hero-art { min-height: 390px; }
  .career-hero-art { padding: 34px; }
  .experience-line { align-items: flex-start; flex-direction: column; gap: 4px; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .project-card-copy { padding: 30px; }
  .project-card figure { height: 250px; min-height: 250px; }
  .mini-gallery { min-height: 440px; gap: 8px; }
  .offer-card, .value-grid article { min-height: 0; }
  .link-card-grid { grid-template-columns: 1fr; }
  .link-card-grid a { min-height: 130px; }
  .feature-list li { grid-template-columns: 1fr; gap: 4px; }
  .contact-actions a { flex-direction: column; gap: 4px; }
  .contact-actions strong { text-align: left; }
  .footer-sites-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-sites-grid a { min-height: 140px; }
  .footer-bottom { flex-direction: column; gap: 7px; padding-bottom: 90px; }
  .sticky-contact { position: fixed; z-index: 100; left: 10px; right: 10px; bottom: 10px; display: grid; grid-template-columns: 1.25fr 0.8fr 46px; overflow: hidden; border: 1px solid #46443f; border-radius: 16px; background: #151512; box-shadow: 0 14px 50px rgba(0,0,0,0.28); }
  .sticky-contact a, .sticky-contact button { min-height: 54px; display: grid; place-items: center; border: 0; border-right: 1px solid #46443f; background: transparent; color: var(--paper); text-decoration: none; font-size: 13px; font-weight: 750; }
  .sticky-contact a:first-child { background: var(--accent); }
  .sticky-contact button { border-right: 0; color: #bcb5aa; font-size: 23px; cursor: pointer; }
}

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

/* Edition Schwarz · Gold · Bordeaux */
:root {
  --ink: #f3ead7;
  --ink-soft: #cbbda3;
  --paper: #080706;
  --paper-deep: #12100d;
  --white: #18140f;
  --line: #594624;
  --muted: #aa9a7e;
  --accent: #7b152a;
  --accent-light: #cd7281;
  --gold: #c7a45d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

body {
  background:
    radial-gradient(circle at 82% 2%, rgba(199, 164, 93, 0.09), transparent 32rem),
    var(--paper);
  color: var(--ink);
}

p { color: var(--ink-soft); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.site-header { border-color: rgba(199, 164, 93, 0.28); background: rgba(8, 7, 6, 0.93); }
.brand-copy strong { color: var(--gold); }
.brand-copy small, .experience-line span { color: var(--muted); }
.desktop-nav a:hover { color: var(--gold); }
.desktop-nav .nav-contact { border-color: var(--gold); color: var(--gold); }
.desktop-nav .nav-contact:hover { background: var(--accent); color: #fff7ea; }
.mobile-menu summary { border-color: var(--line); }
.mobile-menu summary span { background: var(--gold); }
.mobile-menu nav { border-color: var(--line); background: #11100d; }
.mobile-menu nav a { border-color: rgba(199, 164, 93, 0.18); }

.eyebrow { color: var(--gold); }
.home-hero {
  border-bottom: 1px solid rgba(199, 164, 93, 0.28);
  background: linear-gradient(135deg, rgba(123, 21, 42, 0.13), transparent 38%);
}
.home-hero-copy h1 span { color: var(--accent-light); }
.hero-note { color: var(--muted); }
.button-dark { border-color: var(--gold); background: var(--gold); color: #090806; }
.button-dark:hover { border-color: var(--accent); background: var(--accent); color: #fff7ea; }
.button-outline { border-color: var(--gold); color: var(--gold); }
.button-outline:hover { border-color: var(--accent-light); background: var(--accent); color: #fff7ea; }
.button-light { background: var(--gold); color: #090806; }
.button-light:hover { background: #e0c47f; }
.button-ghost-light { border-color: rgba(199, 164, 93, 0.72); color: var(--gold); }
.button-ghost-light:hover { border-color: var(--accent-light); background: var(--accent); color: #fff7ea; }
.text-link { color: var(--gold); border-color: var(--gold); }
.text-link:hover { color: var(--accent-light); border-color: var(--accent-light); }

.projects-section { border-color: rgba(199, 164, 93, 0.28); }
.project-card {
  border-color: rgba(199, 164, 93, 0.52);
  background: linear-gradient(155deg, #1b1711, #0e0c09 72%);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.34);
}
.project-card:hover { border-color: var(--gold); box-shadow: 0 28px 78px rgba(0, 0, 0, 0.5); }
.project-card figure,
.project-passbild figure,
.project-bewerbung figure,
.project-blackwhite figure,
.project-akt figure,
.project-zen figure {
  height: 280px !important;
  min-height: 280px !important;
  padding: 30px;
  overflow: visible;
  border-bottom: 1px solid rgba(199, 164, 93, 0.34);
  background: #050504;
}
.project-card figure img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: auto;
  object-fit: contain !important;
  object-position: center !important;
}
.project-card-copy h3 { color: var(--ink); }
.project-card-links a, .project-zen .project-card-links a { color: var(--gold); }
.project-card-links a:hover, .project-zen .project-card-links a:hover { color: var(--accent-light); }
.project-price { color: var(--accent-light) !important; }
.project-zen { color: var(--ink); }
.project-zen p { color: var(--ink-soft); }
.project-zen .eyebrow { color: var(--gold); }

.section-soft { background: #12100d; }
.section-dark, .project-cta {
  border-top: 1px solid rgba(199, 164, 93, 0.34);
  border-bottom: 1px solid rgba(199, 164, 93, 0.34);
  background: linear-gradient(145deg, #050504, #17110d);
  color: var(--ink);
}
.section-dark p, .project-cta p { color: var(--ink-soft); }
.section-dark .eyebrow, .project-cta .eyebrow { color: var(--gold); }
.artist-section, .process-band { background: #0d0b08; }
.value-grid article, .offer-card, .link-card-grid a, .contact-card, .map-consent {
  border-color: rgba(199, 164, 93, 0.42);
  background: linear-gradient(150deg, #1a1611, #0d0b08);
}
.value-mark { border-color: var(--gold); }
.value-mark::after { background: var(--accent); }
.offer-card.featured, .primary-contact {
  border-color: var(--gold);
  background: linear-gradient(150deg, #090807, #24100f);
  color: var(--ink);
}
.offer-card.featured p, .offer-card.featured li, .primary-contact p { color: var(--ink-soft); }
.offer-card.featured .eyebrow, .primary-contact .eyebrow { color: var(--gold); }
.price { color: var(--accent-light) !important; }
.clean-list { color: var(--ink-soft); }
.price-table-wrap { border-color: var(--line); background: #100e0b; }
.price-table th { background: #050504; color: var(--gold); }
.price-table th, .price-table td { border-color: rgba(199, 164, 93, 0.25); }
.location-band { background: linear-gradient(140deg, #5f0d20, #8d2038); }
.location-band p { color: #f0d8d7; }
.location-band .eyebrow { color: #ebc57b; }

.project-hero-image, .uniform-gallery figure, .zen-grid article, .spec-image, .single-portrait {
  border: 1px solid rgba(199, 164, 93, 0.58);
  background: #050504;
  box-shadow: var(--shadow);
}
.project-hero-image.light-image { background: #0b0907; }
.project-hero-image img, .uniform-gallery img, .zen-grid img, .spec-image img {
  object-fit: contain !important;
  object-position: center !important;
}
.zen-grid article { background: #15110d; }
.zen-grid img { background: #050504; }
.about-monogram, .contact-hero-card { border: 1px solid rgba(199, 164, 93, 0.55); background: linear-gradient(145deg, #050504, #2a100f); }
.about-enso { background: radial-gradient(circle at 50% 50%, #2c2212, #050504 72%); }
.about-enso span { border-color: var(--gold); border-right-color: rgba(123, 21, 42, 0.7); }
.contact-actions { border-color: rgba(199, 164, 93, 0.28); }
.contact-actions a { border-color: rgba(199, 164, 93, 0.25); }
.contact-actions span { color: var(--muted); }

.site-footer { border-top: 1px solid var(--gold); background: #050504; }
.footer-sites { border-color: rgba(199, 164, 93, 0.27); background: #0b0907; }
.footer-sites-grid a { border-color: rgba(199, 164, 93, 0.38); background: #12100d; }
.footer-sites-grid a:hover { border-color: var(--gold); background: #1b160f; }
.footer-sites-grid small { color: var(--accent-light); }
.footer-grid h2, .footer-logo + p strong { color: var(--gold); }
.footer-bottom { border-color: rgba(199, 164, 93, 0.22); }
.sticky-contact { border-color: var(--gold); background: #080706; }
.sticky-contact a, .sticky-contact button { border-color: rgba(199, 164, 93, 0.34); }
.sticky-contact a:first-child { background: var(--accent); }

@media (max-width: 620px) {
  .project-card figure,
  .project-passbild figure,
  .project-bewerbung figure,
  .project-blackwhite figure,
  .project-akt figure,
  .project-zen figure {
    height: 250px !important;
    min-height: 250px !important;
    padding: 24px;
  }
}

/* Kontrastkorrekturen für dunkle Flächen */
.location-band,
.location-band h2,
.location-band strong,
.contact-hero-card,
.contact-hero-card strong,
.project-hero-art,
.career-hero-art,
.about-monogram,
.dark-card-grid h3,
.site-footer,
.footer-sites-grid strong,
.sticky-contact a,
.sticky-contact button {
  color: #fff4e2;
}

.light-link {
  color: var(--gold);
  border-color: var(--gold);
}

.light-link:hover { color: var(--accent-light); border-color: var(--accent-light); }
.location-band p { color: #f7dedc; }
.contact-hero-card span { color: #e5c370; }
.site-footer p, .site-footer address { color: #cfc5b3; }
.site-footer a { color: #ded3bf; }
.footer-sites-grid span { color: #b8aa91; }
.footer-bottom { color: #b1a48d; }
.sticky-contact button { color: #d8c9af; }

.artist-inline-image {
  min-height: 260px;
  margin: 34px 0 28px;
  padding: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199, 164, 93, 0.55);
  border-radius: var(--radius);
  background: #050504;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.38);
}

.artist-inline-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 330px;
  object-fit: contain;
}

/* Einwilligung für optionale Reichweitenmessung */
.analytics-consent {
  position: fixed;
  z-index: 190;
  right: 18px;
  bottom: 18px;
  width: min(520px, calc(100% - 36px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 30px;
  border: 1px solid var(--gold);
  border-radius: 22px;
  background: linear-gradient(150deg, #1a1611, #070605);
  color: #fff4e2;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.68);
}

.analytics-consent[hidden] { display: none; }
.analytics-consent h2 {
  margin-bottom: 14px;
  color: #fff4e2;
  font-size: clamp(1.55rem, 4vw, 2.2rem);
}
.analytics-consent p:not(.eyebrow) {
  margin-bottom: 0;
  color: #d8cbb6;
}
.analytics-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.analytics-consent-actions .button { width: auto; }
.analytics-consent-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  text-underline-offset: 4px;
}
.analytics-consent-link:hover { color: var(--accent-light); }

/* Strikte Trennung von Bild- und Textflächen */
.project-card figure,
.project-hero-image,
.artist-inline-image,
.spec-image,
.single-portrait,
.uniform-gallery figure,
.mini-gallery,
.about-monogram {
  position: relative;
  z-index: 0;
  overflow: hidden !important;
  isolation: isolate;
}

.project-card-copy,
.zen-grid article > div {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(199, 164, 93, 0.34);
  background: #12100d;
}

.project-hero-grid,
.image-copy-grid,
.interior-hero-grid {
  isolation: isolate;
}

.project-hero-copy,
.image-copy-grid > div,
.interior-hero-grid > div:first-child {
  position: static;
}

@media (max-width: 620px) {
  .analytics-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    max-height: calc(100vh - 20px);
    padding: 22px;
  }
  .analytics-consent-actions { display: grid; }
  .analytics-consent-actions .button { width: 100%; }
}

/* Professionelles, formatstabiles Bildsystem · 18.08.2026 */
.project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  max-width: 1000px;
  margin-inline: auto;
}

.project-grid > .project-card:last-child {
  grid-column: 1 / -1;
  width: calc((100% - 26px) / 2);
  justify-self: center;
}

.project-card {
  min-height: 0;
  overflow: hidden;
}

.project-card figure {
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 4 / 3;
  padding: clamp(18px, 2.4vw, 28px);
  place-items: stretch;
  overflow: hidden !important;
  border-bottom: 1px solid rgba(199, 164, 93, 0.48);
  background:
    radial-gradient(circle at 50% 46%, rgba(199, 164, 93, 0.09), transparent 62%),
    #050504;
  box-shadow: inset 0 0 0 1px rgba(255, 244, 226, 0.035);
}

.project-card figure img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-width: 0;
  min-height: 0;
  max-width: none !important;
  max-height: none !important;
  margin: 0;
  object-fit: contain !important;
  object-position: 50% 50% !important;
}

.project-card-copy {
  min-height: 330px;
  padding: clamp(30px, 4vw, 46px);
}

.project-hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(52px, 8vw, 104px);
}

.project-hero-image {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  padding: clamp(16px, 2.2vw, 24px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 50%, rgba(199, 164, 93, 0.08), transparent 64%),
    #050504;
}

.project-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: 50% 50% !important;
}

.image-copy-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: clamp(42px, 7vw, 92px);
  padding: clamp(18px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(199, 164, 93, 0.42);
  border-radius: 30px;
  background: linear-gradient(145deg, #100e0b, #070605);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.image-copy-grid > div:last-child {
  padding: clamp(10px, 2vw, 22px) clamp(4px, 1vw, 14px);
}

.mini-gallery {
  min-height: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(199, 164, 93, 0.42);
  border-radius: 22px;
  background: #050504;
}

.mini-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  padding: 10px;
  object-fit: contain !important;
  object-position: 50% 50% !important;
  border: 1px solid rgba(199, 164, 93, 0.25);
  border-radius: 14px;
  background: #090806;
}

.uniform-gallery {
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(199, 164, 93, 0.42);
  border-radius: 28px;
  background: #080706;
}

.uniform-gallery figure {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 3 / 4;
  padding: 14px;
  border-radius: 16px;
  background: #050504;
}

.uniform-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: 50% 50% !important;
}

.single-portrait {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 2 / 3;
  padding: 16px;
}

.single-portrait img,
.spec-image img,
.artist-inline-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain !important;
  object-position: 50% 50% !important;
}

.spec-image {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  padding: 18px;
}

.zen-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  padding: 14px;
  object-fit: contain !important;
  object-position: 50% 50% !important;
}

.artist-inline-image {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.about-monogram {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  padding: clamp(34px, 6vw, 72px);
}

.about-monogram img {
  width: 100%;
  height: 100%;
  max-width: 54%;
  max-height: 54%;
  object-fit: contain;
  object-position: 50% 50%;
}

@media (max-width: 1050px) {
  .project-hero-grid { grid-template-columns: 1fr; }
  .project-hero-image { max-width: 760px; margin-inline: auto; }
}

@media (max-width: 820px) {
  .project-grid { grid-template-columns: 1fr; max-width: 620px; }
  .project-grid > .project-card:last-child {
    grid-column: auto;
    width: 100%;
  }
  .project-card-copy { min-height: 0; }
  .image-copy-grid { grid-template-columns: 1fr; gap: 34px; }
  .uniform-gallery { grid-template-columns: 1fr; }
  .uniform-gallery figure { max-width: 560px; margin-inline: auto; }
}

@media (max-width: 620px) {
  .project-card figure { padding: 16px; }
  .project-hero-image { padding: 12px; border-radius: 20px; }
  .image-copy-grid { padding: 14px; border-radius: 22px; }
  .mini-gallery { gap: 8px; padding: 8px; }
  .mini-gallery img { padding: 6px; }
  .uniform-gallery { padding: 10px; }
}
