:root {
  --ink: #202124;
  --muted: #686b70;
  --paper: #f5f5f3;
  --white: #fff;
  --sage: #8d9196;
  --sage-dark: #4b4f54;
  --sand: #d7d5d2;
  --line: rgba(32, 33, 36, .16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.65; }
body.nav-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--white); background: var(--sage-dark); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.skip-link { position: fixed; z-index: 999; top: 8px; left: 8px; padding: 8px 12px; background: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header { position: absolute; z-index: 30; top: 0; left: 0; display: flex; width: 100%; height: 104px; padding: 0 clamp(24px, 5vw, 76px); align-items: center; justify-content: space-between; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.24); transition: .3s ease; }
.site-header.solid { position: relative; color: var(--ink); background: var(--paper); border-color: var(--line); }
.site-header.scrolled { position: fixed; height: 78px; color: var(--ink); background: rgba(245,245,243,.96); border-color: var(--line); backdrop-filter: blur(12px); }
.brand { display: flex; width: clamp(180px, 17vw, 235px); align-items: center; }
.brand img { display: block; width: 100%; height: auto; max-height: 72px; object-fit: contain; filter: brightness(0) invert(1); }
.site-header.solid .brand img, .site-header.scrolled .brand img { filter: none; }
.site-header.scrolled .brand { width: clamp(155px, 14vw, 190px); }
.site-header.scrolled .brand img { max-height: 54px; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 42px); font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.main-nav a { position: relative; padding: 10px 0; }
.main-nav a:not(.nav-cta)::after { position: absolute; bottom: 4px; left: 0; width: 0; height: 1px; content: ""; background: currentColor; transition: width .25s; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav .nav-cta { padding: 12px 18px; border: 1px solid currentColor; }
.nav-toggle { display: none; width: 42px; height: 42px; padding: 8px; background: none; border: 0; }
.nav-toggle > span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 5px 0; background: currentColor; }

.hero { position: relative; min-height: 100svh; color: var(--white); background: #242527; }
.hero-image { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: 54% 43%; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,19,21,.78) 0, rgba(18,19,21,.36) 48%, rgba(18,19,21,.08) 100%), linear-gradient(0deg, rgba(0,0,0,.28), transparent 40%); }
.hero-content { position: relative; z-index: 2; display: flex; max-width: 850px; min-height: 100svh; padding: 155px clamp(24px, 8vw, 135px) 90px; flex-direction: column; justify-content: center; align-items: flex-start; }
.hero .hero-content { opacity: 1; transform: none; }
.hero h1, .page-hero h1, .about-copy h1, .contact-intro h1 { margin: 14px 0 26px; font: 400 clamp(50px, 7.5vw, 108px)/.94 var(--serif); letter-spacing: -.045em; }
.hero h1 em, .page-hero h1 em, .about-copy h1 em, .contact-intro h1 em { color: #d6d8da; font-weight: 400; }
.hero-text { max-width: 620px; margin: 0 0 36px; font-size: clamp(17px, 2vw, 21px); color: rgba(255,255,255,.86); }
.eyebrow { margin: 0 0 12px; color: var(--sage-dark); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow.light { color: #e6e7e9; }
.button-row { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.button { display: inline-flex; min-height: 50px; padding: 13px 23px; cursor: pointer; align-items: center; justify-content: center; color: var(--white); background: var(--sage-dark); border: 1px solid var(--sage-dark); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; transition: .25s; }
.button:hover { color: var(--ink); background: transparent; }
.button-light { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-light:hover { color: var(--white); background: transparent; }
.text-link { display: inline-flex; width: fit-content; margin-top: 18px; gap: 10px; align-items: center; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translate(3px,-3px); }
.text-link.light { color: var(--white); }
.scroll-cue { position: absolute; z-index: 2; right: clamp(24px, 5vw, 76px); bottom: 42px; display: flex; gap: 12px; align-items: center; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue span { width: 1px; height: 45px; background: rgba(255,255,255,.7); }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(90px, 11vw, 155px) clamp(24px, 5vw, 68px); }
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(50px, 9vw, 135px); align-items: start; }
.section-heading h2, .quote-section blockquote p, .cta-panel h2, .banner-copy h2, .service-copy h2, .image-text h2 { margin: 0; font: 400 clamp(38px, 5vw, 68px)/1.05 var(--serif); letter-spacing: -.035em; }
.intro-copy { padding-top: 8px; color: var(--muted); }
.lead { margin-top: 0; color: var(--ink); font: 400 clamp(21px, 2.2vw, 29px)/1.42 var(--serif); }
.feature-grid { display: grid; max-width: 1500px; margin: 0 auto; padding: 0 clamp(14px, 2.5vw, 36px); grid-template-columns: 1.12fr .88fr; grid-template-rows: repeat(2, minmax(310px, 42vw)); gap: 14px; }
.feature-card { position: relative; overflow: hidden; color: var(--white); }
.feature-card.feature-tall { grid-row: 1 / 3; }
.feature-card img { height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.feature-card:hover img { transform: scale(1.035); }
.feature-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,16,17,.65), transparent 58%); }
.feature-copy { position: absolute; right: 0; bottom: 0; left: 0; display: grid; padding: clamp(25px, 4vw, 48px); }
.feature-copy small { margin-bottom: 6px; font-size: 10px; letter-spacing: .2em; }
.feature-copy strong { font: 400 clamp(30px, 4vw, 55px)/1 var(--serif); }
.feature-copy em { margin-top: 10px; font-size: 12px; font-style: normal; letter-spacing: .08em; }
.quote-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 9vw, 135px); align-items: center; }
.quote-image img { aspect-ratio: 4/5; object-fit: cover; }
.quote-section blockquote { margin: 0; }
.quote-section blockquote p { color: var(--sage-dark); }
.quote-section blockquote em { color: var(--ink); }
.wide-image-banner { position: relative; max-width: 1500px; min-height: 680px; margin: 0 auto; color: var(--white); }
.wide-image-banner img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.wide-image-banner::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(12,13,14,.72), rgba(12,13,14,.05)); }
.banner-copy { position: relative; z-index: 1; display: flex; min-height: 680px; padding: clamp(50px, 8vw, 120px); flex-direction: column; justify-content: center; align-items: flex-start; }
.banner-copy h2 { max-width: 700px; margin: 12px 0 32px; }

.testimonials { padding-top: clamp(85px, 10vw, 135px); padding-bottom: clamp(85px, 10vw, 135px); }
.testimonials .section-heading { max-width: 780px; }
.testimonial-intro { max-width: 610px; margin: 22px 0 0; color: var(--muted); }
.testimonial-grid { display: grid; margin-top: 55px; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.testimonial-card { display: flex; min-height: 265px; padding: clamp(28px, 3.5vw, 42px); flex-direction: column; justify-content: space-between; background: var(--white); border: 1px solid var(--line); box-shadow: 0 18px 55px rgba(32,33,36,.06); }
.testimonial-card p { margin: 0 0 30px; color: var(--ink); font: 400 clamp(20px, 2.2vw, 29px)/1.35 var(--serif); letter-spacing: -.015em; }
.testimonial-card span { color: var(--sage-dark); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }


.page-hero { max-width: var(--max); margin: 0 auto; padding: clamp(95px, 12vw, 175px) clamp(24px, 5vw, 68px) clamp(75px, 9vw, 125px); }
.page-hero.compact { padding-bottom: 60px; }
.page-hero h1 { max-width: 980px; margin-top: 10px; color: var(--ink); }
.page-hero h1 em { color: var(--sage); }
.page-intro { max-width: 650px; margin: 30px 0 0 auto; color: var(--muted); font-size: 19px; }
.service-detail { display: grid; max-width: 1500px; margin: 0 auto; grid-template-columns: 1fr 1fr; background: #ecebea; }
.service-detail.reverse .service-image { order: 2; }
.service-image img { height: 100%; min-height: 720px; object-fit: cover; }
.service-image.portrait-crop img { object-position: center 28%; }
.service-copy { display: flex; padding: clamp(55px, 8vw, 120px); flex-direction: column; justify-content: center; align-items: flex-start; }
.service-number { margin-bottom: 45px; color: var(--sage); font: 400 28px/1 var(--serif); }
.service-copy h2 { margin-bottom: 26px; }
.service-copy > p:not(.eyebrow) { color: var(--muted); }
.check-list { margin: 22px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 10px 0 10px 28px; border-bottom: 1px solid var(--line); }
.check-list li::before { position: absolute; left: 0; content: "—"; color: var(--sage); }
.process-grid, .values-grid { display: grid; margin-top: 65px; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-grid article, .values-grid article { padding: 35px 27px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid span, .values-grid span { color: var(--sage); font: 400 23px/1 var(--serif); }
.process-grid h3, .values-grid h3 { margin: 45px 0 12px; font: 400 27px/1.1 var(--serif); }
.process-grid p, .values-grid p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.cta-panel { display: flex; min-height: 460px; padding: 70px 24px; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--white); background: var(--sage-dark); }
.cta-panel h2 { max-width: 840px; margin: 10px 0 32px; }

.portfolio-grid { display: grid; padding-top: 20px; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 370px; grid-auto-flow: dense; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; cursor: zoom-in; background: #ddd; border: 0; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.portrait { grid-row: span 2; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item span { position: absolute; right: 0; bottom: 0; left: 0; padding: 35px 24px 20px; color: var(--white); text-align: left; background: linear-gradient(transparent, rgba(0,0,0,.58)); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.lightbox { width: 100vw; max-width: none; height: 100vh; max-height: none; padding: 50px; background: rgba(10,11,12,.94); border: 0; }
.lightbox::backdrop { background: rgba(10,11,12,.94); }
.lightbox img { width: 100%; height: 100%; object-fit: contain; }
.lightbox button { position: absolute; z-index: 2; top: 18px; right: 25px; cursor: pointer; color: var(--white); background: none; border: 0; font-size: 40px; }

.about-hero { display: grid; max-width: 1500px; margin: 0 auto; grid-template-columns: .9fr 1.1fr; background: #ecebea; }
.about-image img { height: 100%; min-height: 850px; object-fit: cover; object-position: 50% 25%; }
.about-copy { display: flex; padding: clamp(70px, 8vw, 130px); flex-direction: column; justify-content: center; }
.about-copy h1 { font-size: clamp(45px, 5.5vw, 78px); }
.about-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.image-text { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 9vw, 130px); align-items: center; }
.image-text img { aspect-ratio: 1.25; object-fit: cover; }
.image-text h2 { margin: 10px 0 25px; }
.image-text p { color: var(--muted); }

.contact-layout { display: grid; max-width: var(--max); margin: 0 auto; padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 68px); grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 9vw, 130px); }
.contact-intro h1 { font-size: clamp(48px, 6.5vw, 86px); }
.contact-data { display: grid; margin-top: 55px; gap: 24px; }
.contact-data div { display: grid; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.contact-data small { margin-bottom: 5px; color: var(--muted); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.placeholder { color: #6f7378; }
.edit-note, .legal-warning { padding: 17px 20px; color: #4f5358; background: #ecebea; border-left: 3px solid #8d9196; font-size: 13px; }
.contact-card { padding: clamp(35px, 5vw, 65px); background: var(--white); box-shadow: 0 20px 80px rgba(32,33,36,.08); }
.contact-card h2 { margin: 10px 0 24px; font: 400 clamp(32px, 4vw, 52px)/1.08 var(--serif); letter-spacing: -.03em; }
.contact-card p { color: var(--muted); }
.quick-list { margin: 26px 0 32px; padding: 0; list-style: none; }
.quick-list li { position: relative; padding: 11px 0 11px 28px; border-bottom: 1px solid var(--line); color: var(--muted); }
.quick-list li::before { position: absolute; left: 0; content: "—"; color: var(--sage-dark); }
.contact-actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.contact-data a { text-decoration: none; }
.contact-data a:hover, .legal-page a:hover { text-decoration: underline; }
.contact-image { max-width: 1500px; margin: 0 auto; }
.contact-image img { max-height: 650px; object-fit: cover; }

.legal-page { max-width: 850px; min-height: 70vh; margin: 0 auto; padding: 100px 24px 140px; }
.legal-page h1 { margin: 5px 0 50px; font: 400 clamp(50px, 7vw, 82px)/1 var(--serif); }
.legal-page section { padding: 35px 0; border-bottom: 1px solid var(--line); }
.legal-page h2 { font: 400 27px/1.2 var(--serif); }
.legal-page h3 { margin: 32px 0 12px; font: 600 18px/1.35 var(--sans); letter-spacing: .01em; }
.legal-page h4 { margin: 26px 0 10px; font: 700 14px/1.4 var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.legal-page p { color: var(--muted); }
.legal-page .lead { max-width: 720px; margin: -22px 0 28px; color: var(--ink); font-size: 18px; line-height: 1.7; }
.legal-page ul { margin: 12px 0 24px; padding-left: 22px; color: var(--muted); }
.legal-page li { margin: 7px 0; line-height: 1.7; }
.legal-page mark { padding: 2px 5px; color: #4f5358; background: #ecebea; }
.legal-warning { margin-bottom: 45px; }
.legal-warning p { margin-bottom: 0; color: inherit; }

.site-footer { display: grid; position: relative; max-width: 1500px; margin: 0 auto; padding: 80px clamp(24px, 6vw, 90px) 45px; grid-template-columns: 1.45fr repeat(5, 1fr); gap: 45px; color: rgba(255,255,255,.72); background: #242527; font-size: 13px; }
.footer-brand img { width: min(260px, 100%); height: auto; margin-bottom: 24px; filter: brightness(0) invert(1); }
.site-footer strong { display: block; margin-bottom: 17px; color: var(--white); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.site-footer a, .site-footer div > span { display: block; width: fit-content; margin: 8px 0; }
.site-footer a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.site-footer .footer-social a { display: inline-flex; width: 38px; height: 38px; margin: 0; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; color: rgba(255,255,255,.84); transition: .25s; }
.site-footer .footer-social a:hover { color: var(--white); border-color: rgba(255,255,255,.72); transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; fill: currentColor; }
.site-footer.minimal .footer-social { margin-left: 4px; }
.site-footer.minimal .footer-social a { width: 34px; height: 34px; }
.quick-list a { border-bottom: 1px solid currentColor; }

.copyright { grid-column: 1/-1; margin: 35px 0 0; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.13); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.site-footer.minimal { display: flex; max-width: none; padding: 35px max(24px, calc((100vw - 850px)/2)); align-items: center; gap: 25px; }
.site-footer.minimal p { margin-right: auto; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .site-header { height: 82px; padding: 0 24px; }
  .brand { width: 170px; }
  .brand img { max-height: 58px; }
  .site-header.scrolled .brand { width: 150px; }
  .site-header.scrolled .brand img { max-height: 48px; }
  .nav-toggle { position: absolute; z-index: 2; top: 20px; right: 16px; display: block; width: auto; color: inherit; }
  .nav-toggle::before { content: "Menü"; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
  .nav-toggle > span:not(.sr-only) { display: none; }
  .main-nav { position: fixed; inset: 0; display: flex; padding: 120px 30px 60px; visibility: hidden; flex-direction: column; justify-content: center; color: var(--ink); background: var(--paper); opacity: 0; transform: translateY(-15px); transition: .25s; font: 400 28px/1 var(--serif); letter-spacing: 0; text-transform: none; }
  .nav-open .main-nav { visibility: visible; opacity: 1; transform: none; }
  .nav-open .nav-toggle { color: var(--ink); }
  .main-nav .nav-cta { margin-top: 15px; padding: 15px 25px; font: 700 11px/1 var(--sans); letter-spacing: .13em; text-transform: uppercase; }
  .intro-grid, .quote-section, .about-hero, .contact-layout, .image-text { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; grid-template-rows: 70vh 55vh 55vh; }
  .feature-card.feature-tall { grid-row: auto; }
  .quote-image { max-width: 520px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse .service-image { order: 0; }
  .service-image img { min-height: 55vh; max-height: 680px; }
  .process-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 310px; }
  .about-image img { min-height: 70vh; max-height: 850px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero-content { width: 100%; max-width: 100%; padding-right: 24px; padding-left: 24px; overflow: hidden; }
  .hero-image { object-position: 57% center; }
  .hero h1 { max-width: 100%; font-size: clamp(42px, 13vw, 53px); overflow-wrap: anywhere; }
  .hero-text { max-width: 100%; }
  .hero .button-row { gap: 14px; flex-direction: column; align-items: flex-start; }
  .scroll-cue { display: none; }
  .section { padding-right: 24px; padding-left: 24px; }
  .wide-image-banner, .banner-copy { min-height: 590px; }
  .service-copy, .about-copy { padding: 60px 24px; }
  .process-grid, .values-grid { grid-template-columns: 1fr; }
  .portfolio-grid { display: block; }
  .gallery-item { width: 100%; height: 62vw; min-height: 270px; margin-bottom: 10px; }
  .gallery-item.portrait { height: 125vw; max-height: 650px; }
  .lightbox { padding: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 32px 22px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .copyright { grid-column: auto; }
  .site-footer.minimal { align-items: flex-start; flex-wrap: wrap; }
}


/* Erweiterungen: Leistungslinks, Portfolio-Kategorien, Fabian-Profil */
.service-jump-links,
.portfolio-filter,
.review-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.service-jump-links a,
.portfolio-filter a {
  display: inline-flex;
  padding: 9px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.48);
  color: var(--sage-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: .25s;
}
.service-jump-links a:hover,
.portfolio-filter a:hover {
  background: var(--sage-dark);
  color: var(--white);
  border-color: var(--sage-dark);
}
.review-links .text-link { margin-right: 24px; }
.signature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 54px;
}
.signature-grid article {
  padding: clamp(28px, 3vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 55px rgba(32,33,36,.05);
}
.signature-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--sage-dark);
  font: 400 clamp(32px, 3vw, 48px)/1 var(--serif);
  letter-spacing: -.03em;
}
.signature-grid span {
  display: block;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.signature-grid p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.portfolio-category {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px clamp(24px, 5vw, 68px) 86px;
}
.portfolio-category + .portfolio-category { padding-top: 18px; }
.portfolio-category-heading {
  display: grid;
  grid-template-columns: minmax(170px, .32fr) minmax(0, 1fr);
  column-gap: clamp(34px, 6vw, 88px);
  row-gap: 12px;
  align-items: end;
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.portfolio-category-heading .eyebrow {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0 0 6px;
  display: flex;
  align-items: flex-end;
}
.portfolio-category-heading h2 {
  grid-column: 2;
  margin: 0;
  max-width: 820px;
  font: 400 clamp(32px, 4vw, 56px)/1.05 var(--serif);
  letter-spacing: -.035em;
}
.portfolio-category-heading p:not(.eyebrow) {
  grid-column: 2;
  max-width: 720px;
  margin: 6px 0 0;
  color: var(--muted);
}
.portfolio-category .portfolio-grid {
  padding: 0;
}
.portfolio-category .portfolio-grid:has(.gallery-item:nth-child(1):last-child),
.portfolio-category .portfolio-grid:has(.gallery-item:nth-child(2):last-child) {
  grid-auto-rows: 430px;
}
.service-copy p + p { margin-top: 0; }
@media (max-width: 1100px) {
  .site-footer { grid-template-columns: 1fr 1fr 1fr; }
  .signature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .portfolio-category-heading { grid-template-columns: 1fr; row-gap: 12px; }
  .portfolio-category-heading .eyebrow,
  .portfolio-category-heading h2,
  .portfolio-category-heading p:not(.eyebrow) { grid-column: 1; grid-row: auto; }
  .portfolio-category-heading .eyebrow { margin: 0; }
}
@media (max-width: 600px) {
  .service-jump-links a, .portfolio-filter a { width: 100%; justify-content: center; }
  .signature-grid { grid-template-columns: 1fr; }
  .portfolio-category { padding-right: 24px; padding-left: 24px; }
  .review-links { display: block; }
  .review-links .text-link { margin-right: 0; }
}


/* Kompaktere Abstände und ausgewogenere Leistungsseite */
.section {
  padding-top: clamp(58px, 7vw, 105px);
  padding-bottom: clamp(58px, 7vw, 105px);
}
.page-hero {
  padding-top: clamp(110px, 12vw, 175px);
  padding-bottom: clamp(58px, 7vw, 100px);
}
.service-image img {
  min-height: 610px;
}
.service-copy {
  padding: clamp(44px, 6vw, 92px);
}
.service-number {
  margin-bottom: 24px;
}
.service-copy h2 {
  margin-bottom: 20px;
}
.check-list {
  margin: 18px 0;
}
.check-list li {
  padding-top: 8px;
  padding-bottom: 8px;
}
.process-grid,
.values-grid {
  margin-top: 42px;
}
.process-grid article,
.values-grid article {
  padding: 30px 24px;
}
.process-grid h3,
.values-grid h3 {
  margin: 30px 0 10px;
}
.cta-panel {
  min-height: 360px;
  padding-top: 58px;
  padding-bottom: 58px;
}
.about-image img {
  min-height: 700px;
}
.about-copy {
  padding: clamp(56px, 7vw, 105px);
}
.signature-grid {
  margin-top: 38px;
}
.signature-grid article {
  padding: clamp(24px, 2.4vw, 34px);
}
.signature-grid p {
  margin-top: 18px;
}
.image-text {
  gap: clamp(38px, 6vw, 90px);
}
.portfolio-category {
  padding-bottom: 64px;
}
@media (max-width: 900px) {
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 1fr;
  }
  .service-detail.reverse .service-image {
    order: 0;
  }
  .service-image img {
    min-height: 420px;
  }
  .service-copy {
    padding: 42px 28px 48px;
  }
  .about-image img {
    min-height: 540px;
  }
}
@media (max-width: 600px) {
  .page-hero {
    padding-top: 100px;
    padding-bottom: 46px;
  }
  .service-image img {
    min-height: 340px;
  }
  .process-grid,
  .values-grid {
    margin-top: 30px;
  }
}


/* About page spacing refinements */
.about-signature.section {
  padding-top: clamp(64px, 8vw, 110px);
  padding-bottom: clamp(32px, 4vw, 56px);
}
.values.section {
  padding-top: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(48px, 6vw, 84px);
}
.values.section .section-heading {
  max-width: 900px;
}
.values.section .values-grid {
  margin-top: 42px;
}
.about-signature .signature-grid {
  margin-top: 40px;
}
.image-text.section {
  padding-top: clamp(36px, 4vw, 60px);
  padding-bottom: clamp(64px, 7vw, 96px);
}
@media (max-width: 900px) {
  .about-signature.section,
  .values.section,
  .image-text.section {
    padding-top: 38px;
    padding-bottom: 38px;
  }
  .about-signature .signature-grid,
  .values.section .values-grid {
    margin-top: 28px;
  }
}


/* Footer full-bleed background + tighter portfolio grid */
.site-footer {
  isolation: isolate;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #242527;
  z-index: -1;
}
.portfolio-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 360px;
}
.gallery-item.wide {
  grid-column: 1 / -1;
}
.gallery-item.portrait {
  grid-row: span 1;
}
@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 310px;
  }
}
@media (max-width: 600px) {
  .site-footer::before {
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
  }
}


/* About page narrative section */
.about-story.section {
  padding-top: clamp(54px, 6vw, 86px);
  padding-bottom: clamp(28px, 4vw, 54px);
}
.about-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}
.about-story-grid article {
  padding: clamp(28px, 3.5vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 55px rgba(32,33,36,.045);
}
.about-story-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.about-story-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
@media (max-width: 900px) {
  .about-story.section {
    padding-top: 42px;
    padding-bottom: 32px;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
}

/* Direct WhatsApp contact */
.direct-contact-button,
.whatsapp-button {
  position: fixed;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  padding: 0;
  border-radius: 50%;
  background: #2bbf6a;
  box-shadow: 0 8px 22px rgba(20, 74, 46, .22);
  color: #fff;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.whatsapp-button {
  right: max(18px, env(safe-area-inset-right));
}
.phone-button {
  right: max(72px, calc(env(safe-area-inset-right) + 54px));
  background: #575b60;
}
.email-button {
  right: max(126px, calc(env(safe-area-inset-right) + 108px));
  background: #202124;
}
.direct-contact-button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.whatsapp-button::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url("../images/whatsapp-icon.png") center / contain no-repeat;
}
.whatsapp-button svg,
.whatsapp-button span {
  display: none;
}
.whatsapp-button:hover,
.whatsapp-button:focus-visible,
.direct-contact-button:hover,
.direct-contact-button:focus-visible {
  color: #fff;
  transform: translateY(-2px);
}
.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: #229c56;
  box-shadow: 0 10px 26px rgba(20, 74, 46, .28);
}
.phone-button:hover,
.phone-button:focus-visible {
  background: #42464a;
}
.email-button:hover,
.email-button:focus-visible {
  background: #000;
}

@media (max-width: 600px) {
  .direct-contact-button,
  .whatsapp-button {
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 42px;
    height: 42px;
  }
  .whatsapp-button {
    right: max(14px, env(safe-area-inset-right));
  }
  .phone-button {
    right: max(64px, calc(env(safe-area-inset-right) + 50px));
  }
  .email-button {
    right: max(114px, calc(env(safe-area-inset-right) + 100px));
  }
}

/* Responsive process timeline */
.process .section-heading {
  max-width: 760px;
}
.process .process-grid {
  position: relative;
  display: grid;
  margin-top: clamp(48px, 6vw, 76px);
  padding-top: 26px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 24px);
  border: 0;
}
.process .process-grid::before {
  position: absolute;
  top: 26px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  content: "";
  background: var(--sage);
}
.process .process-grid article {
  position: relative;
  min-height: 245px;
  margin-top: 26px;
  padding: clamp(62px, 5vw, 78px) clamp(22px, 2.5vw, 32px) clamp(28px, 3vw, 38px);
  background: var(--white);
  border: 1px solid rgba(32, 33, 36, .1);
  box-shadow: 0 18px 45px rgba(32, 33, 36, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.process .process-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(32, 33, 36, .11);
}
.process .process-grid span {
  position: absolute;
  z-index: 1;
  top: -52px;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  background: var(--sage-dark);
  border: 7px solid var(--paper);
  border-radius: 50%;
  font: 700 12px/1 var(--sans);
  letter-spacing: .12em;
  transform: translateX(-50%);
}
.process .process-grid h3 {
  margin: 0 0 14px;
  font: 400 clamp(25px, 2.4vw, 31px)/1.08 var(--serif);
}
.process .process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .process .process-grid {
    padding: 0 0 0 64px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .process .process-grid::before {
    display: none;
  }
  .process .process-grid article {
    min-height: 0;
    margin: 0;
    padding: 28px clamp(24px, 5vw, 38px);
  }
  .process .process-grid article::after {
    position: absolute;
    top: 77px;
    bottom: -43px;
    left: -38px;
    width: 1px;
    content: "";
    background: var(--sage);
  }
  .process .process-grid article:last-child::after {
    display: none;
  }
  .process .process-grid span {
    top: 25px;
    left: -64px;
    width: 52px;
    height: 52px;
    border-width: 6px;
    transform: none;
  }
}

@media (max-width: 600px) {
  .process .process-grid {
    margin-top: 38px;
    padding-left: 50px;
  }
  .process .process-grid article {
    padding: 24px 22px 26px;
  }
  .process .process-grid article::after {
    top: 63px;
    bottom: -39px;
    left: -30px;
  }
  .process .process-grid span {
    top: 21px;
    left: -50px;
    width: 42px;
    height: 42px;
    border-width: 5px;
    font-size: 10px;
  }
}

/* Anniversary banner */
.anniversary-banner {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 44%, rgba(202, 168, 96, .22), transparent 34%),
    linear-gradient(135deg, #1f2023 0%, #3f4448 56%, #25282b 100%);
}
.anniversary-banner::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(202, 168, 96, .34), transparent 28%, transparent 70%, rgba(202, 168, 96, .2)),
    linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 42%);
  opacity: .8;
}
.anniversary-banner::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, #caa860, #f0d590, #caa860, transparent);
}
.anniversary-inner {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  padding-block: clamp(58px, 6.5vw, 92px);
  padding-inline: clamp(26px, 4vw, 52px);
  grid-template-columns: minmax(150px, auto) minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.anniversary-mark {
  display: flex;
  width: clamp(132px, 12vw, 172px);
  height: clamp(132px, 12vw, 172px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #f0d590;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .08), transparent 62%),
    rgba(0, 0, 0, .08);
  border: 1px solid rgba(240, 213, 144, .72);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 10px rgba(202, 168, 96, .08),
    0 22px 70px rgba(0, 0, 0, .24);
}
.anniversary-mark strong {
  color: #f4dc9b;
  font: 400 clamp(70px, 8vw, 108px)/.72 var(--serif);
  letter-spacing: -.07em;
  text-shadow: 0 2px 20px rgba(202, 168, 96, .28);
}
.anniversary-mark span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.anniversary-copy .eyebrow {
  margin-bottom: 14px;
  color: #f0d590;
}
.anniversary-copy h2 {
  margin: 0 0 14px;
  color: var(--white);
  font: 400 clamp(42px, 5.5vw, 76px)/.9 var(--serif);
  letter-spacing: -.04em;
}
.anniversary-copy p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.75;
}
.anniversary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 170px;
  padding: 15px 21px;
  color: #f4dc9b;
  border: 1px solid rgba(240, 213, 144, .7);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.anniversary-link:hover,
.anniversary-link:focus-visible {
  color: var(--ink);
  background: #f0d590;
  border-color: #f0d590;
  transform: translateY(-2px);
}

/* Refined values cards */
.values .section-heading {
  max-width: 860px;
}
.values .values-grid {
  display: grid;
  margin-top: clamp(46px, 6vw, 78px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  border: 0;
}
.values .values-grid article {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: clamp(34px, 3.3vw, 46px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(247, 244, 238, .72)),
    var(--white);
  border: 1px solid rgba(32, 33, 36, .1);
  box-shadow: 0 18px 48px rgba(32, 33, 36, .065);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.values .values-grid article:nth-child(even) {
  margin-top: 28px;
}
.values .values-grid article::before {
  position: absolute;
  top: 0;
  left: clamp(34px, 3.3vw, 46px);
  width: 42px;
  height: 4px;
  content: "";
  background: var(--sage);
}
.values .values-grid article:hover {
  border-color: rgba(32, 33, 36, .2);
  box-shadow: 0 24px 60px rgba(32, 33, 36, .11);
  transform: translateY(-5px);
}
.values .values-grid span {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(32, 33, 36, .065);
  font: 400 clamp(72px, 7vw, 112px)/.8 var(--serif);
  letter-spacing: -.08em;
}
.values .values-grid h3 {
  position: relative;
  margin: clamp(78px, 8vw, 104px) 0 16px;
  color: var(--ink);
  font: 400 clamp(28px, 2.7vw, 36px)/1 var(--serif);
  letter-spacing: -.03em;
}
.values .values-grid p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .values .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .anniversary-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .anniversary-mark {
    justify-content: flex-start;
    padding-right: 0;
    border-right: 0;
  }
  .anniversary-link {
    justify-self: flex-start;
  }
}

@media (max-width: 600px) {
  .anniversary-inner {
    padding: 46px 24px 40px;
    gap: 24px;
  }
  .anniversary-mark {
    width: 92px;
    height: 92px;
    align-self: start;
    box-shadow:
      inset 0 0 0 6px rgba(202, 168, 96, .08),
      0 16px 46px rgba(0, 0, 0, .2);
  }
  .anniversary-mark strong {
    font-size: 50px;
    letter-spacing: -.06em;
  }
  .anniversary-mark span {
    font-size: 8px;
    letter-spacing: .18em;
  }
  .anniversary-copy h2 {
    font-size: clamp(42px, 13vw, 54px);
  }
  .anniversary-copy p:last-child {
    font-size: 16px;
  }
  .values .values-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }
  .values .values-grid article,
  .values .values-grid article:nth-child(even) {
    min-height: 0;
    margin-top: 0;
  }
  .values .values-grid h3 {
    margin-top: 72px;
  }
}
