/* ============================================================
   M&R Entrümpelung
   Olive (logo) · Ink · Cream
   Fraunces (display) · Inter (text)
   ============================================================ */

:root{
  --olive:        #5a6149;
  --olive-deep:   #3d4232;
  --olive-darker: #2c2f24;
  --olive-soft:   #7c826b;
  --ink:          #15170f;
  --ink-soft:     #45483a;
  --cream:        #f3eee2;
  --cream-deep:   #e8e1ce;
  --paper:        #fbf9f3;
  --line:         #d8d2bf;
  --line-dark:    rgba(243,238,226,.18);
  --rust:         #b54a1f;
  --rust-deep:    #8e3a17;
  --white:        #ffffff;

  --maxw: 1280px;
  --pad-x: clamp(20px, 4vw, 48px);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  font-size:17px;
  line-height:1.55;
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; cursor:pointer; border:0; }
.container{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 var(--pad-x); }

.skip{ position:absolute; left:-9999px; }
.skip:focus{
  position:fixed; top:12px; left:12px; padding:10px 14px;
  background:var(--ink); color:var(--cream); border-radius:8px; z-index:100;
}

/* ===== Type ===== */
h1,h2,h3,h4{
  font-family:"Fraunces","Times New Roman",serif;
  font-weight:500;
  letter-spacing:-0.02em;
  margin:0;
  color:inherit;
}
h1{
  font-size:clamp(44px, 6vw, 84px);
  line-height:0.98;
  font-variation-settings:"opsz" 144;
}
h2{
  font-size:clamp(32px, 4.2vw, 56px);
  line-height:1.04;
  font-variation-settings:"opsz" 96;
}
h3{
  font-size:clamp(20px, 1.6vw, 24px);
  font-weight:500;
  line-height:1.2;
  font-variation-settings:"opsz" 48;
  letter-spacing:-0.01em;
}

.kicker{
  display:inline-block;
  font-family:"Inter",sans-serif;
  font-size:12px; font-weight:600;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--olive-deep);
  margin:0 0 18px;
}
.kicker--light{ color:rgba(243,238,226,.7); }

.block-head{ max-width:680px; margin:0 0 clamp(40px, 5vw, 64px); }
.block-head--light .kicker, .block-head--light h2{ color:var(--cream); }
.block-sub{
  font-size:clamp(16px,1.4vw,19px);
  line-height:1.55;
  color:var(--ink-soft);
  max-width:60ch;
  margin:18px 0 0;
}

/* ===== Buttons ===== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 24px;
  font-weight:600; font-size:15px;
  border-radius:6px;
  border:1px solid transparent;
  transition:transform .15s, background .2s, color .2s, border-color .2s;
  white-space:nowrap;
}
.btn--primary{ background:var(--rust); color:var(--cream); }
.btn--primary:hover{ background:var(--rust-deep); transform:translateY(-1px); }
.btn--ghost{
  background:transparent;
  color:var(--cream);
  border-color:rgba(243,238,226,.4);
}
.btn--ghost:hover{ background:var(--cream); color:var(--olive-deep); border-color:var(--cream); }
.btn--block{ display:flex; width:100%; }

/* ===== NAV ===== */
.nav{
  position:sticky; top:0; z-index:50;
  background:var(--olive);
  color:var(--cream);
  border-bottom:1px solid rgba(0,0,0,.18);
}
.nav__inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 var(--pad-x);
  height:80px;
  display:flex; align-items:center; gap:24px;
}
.nav__logo{
  display:flex; align-items:center;
  margin-right:auto;
  padding:8px 0;
}
.nav__logo img{ height:48px; width:auto; }
.nav__links{
  display:flex; gap:32px;
  font-size:14px; font-weight:500;
}
.nav__links a{
  color:rgba(243,238,226,.78);
  padding:6px 0;
  transition:color .2s;
}
.nav__links a:hover{ color:var(--cream); }
.nav__cta{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--cream); color:var(--olive-deep);
  padding:11px 16px; border-radius:6px;
  font-size:13px; font-weight:600;
  transition:background .2s, transform .15s;
}
.nav__cta:hover{ background:var(--white); transform:translateY(-1px); }
@media (max-width:900px){
  .nav__links{ display:none; }
  .nav__inner{ height:68px; }
  .nav__logo img{ height:40px; }
}

/* ============ HERO (split, full-bleed) ============ */
.hero-wrap{ display:contents; }
.hero{
  display:grid;
  grid-template-columns: 1fr 1fr;
  min-height:clamp(560px, 78vh, 760px);
  background:var(--olive-deep);
  color:var(--cream);
}
.hero__copy{
  padding:clamp(48px, 7vw, 96px) clamp(28px, 5vw, 80px);
  display:flex; flex-direction:column; justify-content:center;
  max-width:720px;
}
.hero__copy h1{ color:var(--cream); margin:0 0 24px; }
.hero__lead{
  font-size:clamp(17px, 1.5vw, 20px);
  line-height:1.55;
  color:rgba(243,238,226,.85);
  max-width:48ch;
  margin:0 0 36px;
}
.hero__actions{
  display:flex; flex-wrap:wrap; gap:12px;
  margin-bottom:48px;
}
.hero__stats{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:0;
  margin:0;
  padding-top:32px;
  border-top:1px solid rgba(243,238,226,.18);
  max-width:480px;
}
.hero__stats > div{ padding-right:16px; }
.hero__stats dt{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(243,238,226,.55);
  margin:0 0 6px;
}
.hero__stats dd{
  margin:0;
  font-family:"Fraunces",serif;
  font-size:clamp(20px, 2vw, 26px);
  font-weight:500;
  font-variation-settings:"opsz" 48;
  color:var(--cream);
  letter-spacing:-0.01em;
}
.hero__photo{
  position:relative;
  overflow:hidden;
  background:var(--olive-darker);
}
.hero__photo img{
  width:100%; height:100%;
  min-height:100%;
  object-fit:cover;
  filter:saturate(.92);
}
@media (max-width:880px){
  .hero{ grid-template-columns:1fr; min-height:auto; }
  .hero__photo{ aspect-ratio: 4/3; order:-1; }
}

/* ============ TRUST STRIP ============ */
.trust{
  background:var(--ink);
  color:var(--cream);
  padding:18px 0;
}
.trust__row{
  display:flex; flex-wrap:wrap;
  gap:8px clamp(24px, 4vw, 56px);
  list-style:none; margin:0; padding:0;
  justify-content:space-between;
  font-size:13px;
}
.trust__row li{
  display:inline-flex; align-items:center;
}
.trust__row li::before{
  content:"";
  display:inline-block;
  width:14px; height:14px;
  margin-right:10px;
  background-color:var(--olive-soft);
  -webkit-mask: url("/assets/icon-hammer.svg") center / contain no-repeat;
          mask: url("/assets/icon-hammer.svg") center / contain no-repeat;
  flex:none;
}
.trust__row strong{ font-weight:500; letter-spacing:.01em; }

/* ============ SERVICES (photo tiles) ============ */
.services{
  background:var(--paper);
  padding:clamp(72px, 9vw, 128px) 0;
}
.tiles{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.tile{
  position:relative;
  aspect-ratio: 4/5;
  overflow:hidden;
  border-radius:4px;
  background:var(--olive-darker);
  display:block;
  color:var(--cream);
  isolation:isolate;
}
.tile img{
  width:100%; height:100%;
  object-fit:cover;
  filter:saturate(.88) brightness(.92);
  transition:transform .8s ease, filter .4s ease;
}
.tile::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg,
    rgba(21,23,15,0) 30%,
    rgba(21,23,15,.55) 70%,
    rgba(21,23,15,.92) 100%);
}
.tile__cap{
  position:absolute; left:0; right:0; bottom:0;
  padding:24px 26px 26px;
  z-index:1;
}
.tile__tag{
  display:inline-block;
  font-size:11px; font-weight:600;
  letter-spacing:.18em; text-transform:uppercase;
  color:rgba(243,238,226,.7);
  margin-bottom:8px;
}
.tile__cap h3{
  font-family:"Fraunces",serif;
  font-size:clamp(22px, 2.2vw, 30px);
  font-weight:500;
  line-height:1.05;
  color:var(--cream);
  margin:0 0 8px;
  letter-spacing:-0.01em;
}
.tile__cap p{
  font-size:14px;
  line-height:1.5;
  color:rgba(243,238,226,.78);
  margin:0;
  max-width:32ch;
}
.tile:hover img{ transform:scale(1.04); filter:saturate(1) brightness(1); }
@media (max-width:900px){ .tiles{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:560px){ .tiles{ grid-template-columns:1fr; } .tile{ aspect-ratio: 4/3; } }

.services__more{
  margin:36px 0 0;
  font-size:15px;
  color:var(--ink-soft);
}
.services__more a{
  color:var(--olive-deep);
  border-bottom:1px solid var(--line);
}
.services__more a:hover{ color:var(--rust); border-color:var(--rust); }

/* ============ FULL-BLEED PLATE ============ */
.plate{
  position:relative;
  margin:0;
  background:var(--ink);
}
.plate img{
  width:100%;
  height:clamp(380px, 60vh, 620px);
  object-fit:cover;
  filter:saturate(.9);
}
.plate figcaption{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:36px var(--pad-x);
  display:flex; align-items:center; gap:20px;
  background:linear-gradient(180deg, transparent 0%, rgba(21,23,15,.85) 100%);
  color:var(--cream);
  font-family:"Fraunces",serif;
  font-style:italic;
  font-size:clamp(16px, 1.6vw, 22px);
  font-weight:400;
  max-width:none;
}
.plate__line{
  display:inline-block;
  width:48px; height:1px;
  background:var(--cream);
  flex:none;
}
@media (max-width:600px){
  .plate figcaption{ padding:24px 20px; gap:14px; }
  .plate__line{ width:24px; }
}

/* ============ CASES (Vorher/Nachher) ============ */
.cases{
  background:var(--cream);
  padding:clamp(72px, 9vw, 128px) 0;
}
.case{
  margin:0 0 64px;
}
.case:last-of-type{ margin-bottom:0; }
.case__pair{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px;
  margin-bottom:18px;
}
.case__shot{
  position:relative;
  aspect-ratio: 4/3;
  overflow:hidden;
  background:var(--cream-deep);
}
.case__shot img{
  width:100%; height:100%;
  object-fit:cover;
}
.case__label{
  position:absolute; top:14px; left:14px;
  background:var(--ink);
  color:var(--cream);
  font-size:11px; font-weight:600;
  letter-spacing:.18em; text-transform:uppercase;
  padding:7px 12px;
}
.case__label--after{ background:var(--olive); }
.case__meta{
  display:flex; flex-wrap:wrap; gap:8px 24px;
  align-items:baseline;
  padding:14px 0 0;
  border-top:1px solid var(--line);
}
.case__type{
  font-family:"Fraunces",serif;
  font-size:20px;
  font-weight:500;
  margin-right:auto;
}
.case__detail{
  font-size:14px;
  color:var(--ink-soft);
}
.case__price{
  font-family:"Fraunces",serif;
  font-size:18px;
  font-weight:500;
  color:var(--rust);
}
@media (max-width:640px){
  .case__pair{ grid-template-columns:1fr; }
  .case__type{ margin-right:0; flex:1 1 100%; }
}

/* ============ PROCESS ============ */
.process{
  background:var(--olive-deep);
  color:var(--cream);
  padding:clamp(72px, 9vw, 128px) 0;
}
.process h2{ color:var(--cream); }
.process__list{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:0;
  list-style:none;
  margin:0; padding:0;
  border-top:1px solid var(--line-dark);
}
.process__list li{
  padding:36px 32px;
  border-right:1px solid var(--line-dark);
}
.process__list li:first-child{ padding-left:0; }
.process__list li:last-child{ border-right:0; padding-right:0; }
.process__num{
  display:inline-block;
  font-family:"Fraunces",serif;
  font-size:14px;
  font-weight:500;
  letter-spacing:.18em;
  color:var(--olive-soft);
  margin:0 0 18px;
}
.process__list h3{
  font-family:"Fraunces",serif;
  font-size:clamp(22px, 2vw, 28px);
  font-weight:500;
  color:var(--cream);
  margin:0 0 10px;
}
.process__list p{
  margin:0;
  font-size:15px;
  color:rgba(243,238,226,.78);
  max-width:36ch;
}
@media (max-width:780px){
  .process__list{ grid-template-columns:1fr; }
  .process__list li{ padding:28px 0; border-right:0; border-bottom:1px solid var(--line-dark); }
  .process__list li:last-child{ border-bottom:0; }
}

/* ============ PRICES ============ */
.prices{
  background:var(--paper);
  padding:clamp(72px, 9vw, 128px) 0;
}
.prices__grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:64px;
  align-items:start;
}
.prices__intro{ max-width:580px; }
.factors{
  list-style:none;
  margin:32px 0 0;
  padding:0;
}
.factors li{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:20px;
  padding:14px 0;
  border-top:1px solid var(--line);
  font-size:15px;
}
.factors li:last-child{ border-bottom:1px solid var(--line); }
.factors li > span:first-child{ font-weight:600; }
.factors li > span:last-child{ color:var(--ink-soft); }
.prices__card{
  background:var(--ink);
  color:var(--cream);
  padding:32px;
  border-radius:6px;
  position:sticky; top:104px;
}
.prices__label{
  font-size:11px; font-weight:600;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--olive-soft);
  margin:0 0 8px;
}
.prices__hint{
  margin:0 0 22px;
  font-size:14px;
  color:rgba(243,238,226,.7);
  line-height:1.5;
}
.prices__card dl{ margin:0 0 24px; }
.prices__card dl > div{
  display:flex; justify-content:space-between; align-items:baseline;
  padding:13px 0;
  border-top:1px dashed rgba(243,238,226,.18);
  font-size:15px;
}
.prices__card dl > div:last-child{ border-bottom:1px dashed rgba(243,238,226,.18); }
.prices__card dt{ color:rgba(243,238,226,.85); }
.prices__card dd{
  margin:0;
  font-family:"Fraunces",serif;
  font-weight:500;
  font-size:18px;
  color:var(--cream);
  font-variation-settings:"opsz" 48;
}
@media (max-width:880px){
  .prices__grid{ grid-template-columns:1fr; gap:36px; }
  .prices__card{ position:static; }
  .factors li{ grid-template-columns:1fr; gap:4px; }
}

/* ============ FAQ ============ */
.faq{
  background:var(--cream);
  padding:clamp(72px, 9vw, 128px) 0;
}
.faq__grid{
  display:grid;
  grid-template-columns:0.9fr 1.4fr;
  gap:80px;
  align-items:start;
}
.faq__head{ position:sticky; top:104px; }
.faq__list details{
  border-top:1px solid var(--line);
  padding:20px 0;
}
.faq__list details:last-child{ border-bottom:1px solid var(--line); }
.faq__list summary{
  font-family:"Fraunces",serif;
  font-size:clamp(18px, 1.6vw, 22px);
  font-weight:500;
  list-style:none;
  cursor:pointer;
  display:flex; justify-content:space-between; gap:24px;
  align-items:baseline;
}
.faq__list summary::-webkit-details-marker{ display:none; }
.faq__list summary::after{
  content:"+";
  font-family:"Inter",sans-serif;
  font-weight:300;
  font-size:24px;
  color:var(--olive-deep);
  transition:transform .25s;
  flex:none;
}
.faq__list details[open] summary::after{ transform:rotate(45deg); }
.faq__list p{
  margin:14px 0 0;
  color:var(--ink-soft);
  max-width:60ch;
  font-size:15px;
}
@media (max-width:880px){
  .faq__grid{ grid-template-columns:1fr; gap:32px; }
  .faq__head{ position:static; }
}

/* ============ CONTACT ============ */
.contact{
  background:var(--olive-darker);
  color:var(--cream);
  padding:clamp(72px, 9vw, 128px) 0;
}
.contact h2{ color:var(--cream); }
.contact__grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:64px;
  align-items:start;
}
.contact__lead{
  color:rgba(243,238,226,.82);
  max-width:54ch;
  font-size:17px;
  margin:0 0 32px;
}
.contact__cards{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.contact__cards a{
  display:flex; flex-direction:column; gap:4px;
  padding:18px 20px;
  background:rgba(243,238,226,.04);
  border:1px solid rgba(243,238,226,.14);
  border-radius:4px;
  transition:background .2s, border-color .2s;
}
.contact__cards a:hover{
  background:rgba(243,238,226,.08);
  border-color:rgba(243,238,226,.34);
}
.contact__cards span{
  font-size:11px; font-weight:600;
  letter-spacing:.18em; text-transform:uppercase;
  color:rgba(243,238,226,.55);
}
.contact__cards strong{
  font-family:"Fraunces",serif;
  font-weight:500;
  font-size:18px;
  color:var(--cream);
  letter-spacing:-0.01em;
}
.contact__cards small{ font-size:12px; color:rgba(243,238,226,.55); }

.form{
  background:var(--cream);
  color:var(--ink);
  padding:32px;
  border-radius:6px;
  display:grid; gap:14px;
}
.form__title{
  font-family:"Fraunces",serif;
  font-size:24px; font-weight:500;
  margin:0 0 4px;
}
.form label{
  display:flex; flex-direction:column; gap:6px;
  font-size:13px; font-weight:500;
  color:var(--ink-soft);
}
.form input, .form select, .form textarea{
  font:inherit;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:4px;
  background:var(--white);
  color:var(--ink);
  transition:border-color .15s, box-shadow .15s;
}
.form input:focus, .form select:focus, .form textarea:focus{
  outline:none;
  border-color:var(--olive);
  box-shadow:0 0 0 3px rgba(90,97,73,.18);
}
.form__legal{
  font-size:12px;
  color:var(--ink-soft);
  margin:8px 0 0;
  line-height:1.5;
}
.form__legal a{ text-decoration:underline; }

@media (max-width:880px){
  .contact__grid{ grid-template-columns:1fr; gap:32px; }
}
@media (max-width:520px){
  .contact__cards{ grid-template-columns:1fr; }
}

/* ============ FOOTER ============ */
.footer{
  background:var(--ink);
  color:rgba(243,238,226,.65);
  padding:56px 0 32px;
  font-size:14px;
}
.footer__inner{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:48px;
  align-items:start;
}
.footer__brand img{ margin-bottom:14px; height:48px; width:auto; }
.footer__brand p{ margin:0; max-width:38ch; line-height:1.55; }
.footer__nav{ display:flex; flex-direction:column; gap:8px; }
.footer__nav a, .footer__legal a{
  color:rgba(243,238,226,.75);
  transition:color .2s;
}
.footer__nav a:hover, .footer__legal a:hover{ color:var(--cream); }
.footer__legal{ display:flex; flex-direction:column; gap:8px; }
.footer__legal span{ margin-top:14px; font-size:12px; color:rgba(243,238,226,.4); }
@media (max-width:760px){
  .footer__inner{ grid-template-columns:1fr; gap:24px; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion:reduce){
  *{ animation-duration:.01ms!important; transition-duration:.01ms!important; scroll-behavior:auto!important; }
}
