:root {
  --paper: #efe4d2;
  --paper-2: #e6d8c2;
  --ink: #1f1914;
  --muted: #5c5248;
  --copper: #a84b1c;
  --copper-deep: #7c3612;
  --line: #d3c4ad;
  --dark: #16120f;
  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --header: 6.4rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.12;
  margin: 0;
  font-optical-sizing: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 80;
  background: var(--copper);
  color: #fff;
  padding: 8px 12px;
}

.wrap {
  width: min(1080px, calc(100% - 2.5rem));
  margin-inline: auto;
}

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header);
  padding: 0.55rem 5vw;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  flex: none;
}
.brand img {
  height: 92px;
  width: auto;
  max-height: 92px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}
.nav a:hover { color: var(--ink); }

.header-phone {
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}
.header-phone:hover { color: var(--copper); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  color: #1f1914;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
  filter: saturate(0.86) contrast(1.05);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255, 246, 232, 0.78) 0%, rgba(255, 246, 232, 0.38) 36%, rgba(22, 18, 15, 0.55) 100%);
}
.hero-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5.5rem 1.4rem 3.4rem;
  width: min(720px, calc(100% - 2rem));
}
.hero-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
}
.hero-logo-wrap::before {
  content: "";
  position: absolute;
  width: 128%;
  height: 118%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 248, 238, 0.96) 0%, rgba(255, 248, 238, 0.7) 42%, rgba(255, 248, 238, 0) 72%);
}
.hero-logo {
  position: relative;
  width: min(430px, 82vw);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(22, 18, 15, 0.18));
}
.hero h1 {
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  color: #1f1914;
  max-width: 18em;
}
.hero .lead {
  margin: 0.7rem 0 0;
  font-size: 1.05rem;
  color: #3d342c;
  max-width: 36ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.6rem;
  margin-top: 1.6rem;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.25rem;
  background: var(--copper);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
}
.btn:hover { background: var(--copper-deep); }
.btn-ghost {
  background: transparent;
  color: #1f1914;
  padding: 0.78rem 0;
  border-bottom: 1px solid rgba(31, 25, 20, 0.4);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--copper-deep); border-bottom-color: var(--copper-deep); }

/* Intro */
.intro {
  padding: 5.5rem 0 4.5rem;
}
.intro .lede {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  line-height: 1.38;
  font-weight: 450;
  max-width: 22em;
}
.intro .rest {
  margin-top: 1.5rem;
  max-width: 38em;
  color: var(--muted);
}
.intro .rest p { margin: 0 0 0.9rem; }

/* Services */
.services {
  padding: 0 0 5rem;
}
.services h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 2rem;
}
.job {
  display: grid;
  grid-template-columns: minmax(12rem, 0.42fr) 1fr;
  gap: 1.5rem 2.5rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}
.job:last-child { border-bottom: 1px solid var(--line); }
.job h3 {
  font-size: 1.35rem;
}
.job p {
  margin: 0;
  color: var(--muted);
}

/* Photos */
.photos {
  padding: 0 0 5.5rem;
}
.photos-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 0.7rem;
  align-items: end;
  padding: 0 0.7rem;
}
.photos figure { margin: 0; }
.photos img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.04);
}
.photos-main img { aspect-ratio: 5 / 4; }
.photos-side img { aspect-ratio: 4 / 5; }
.photos figcaption {
  margin-top: 0.55rem;
  font-size: 0.86rem;
  color: var(--muted);
}

/* Ablauf */
.process {
  padding: 4.5rem 0 5.5rem;
  background: var(--paper-2);
}
.process h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.8rem;
}
.process ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.process li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-top: 1px solid #cbbda8;
  max-width: 42rem;
}
.process li:last-child { border-bottom: 1px solid #cbbda8; }
.process li::before {
  content: counter(step);
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--copper);
}
.process li p { margin: 0.15rem 0 0; color: var(--muted); }
.process li strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 550;
}

/* About */
.about {
  padding: 5.5rem 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 3rem;
  align-items: center;
}
.portrait {
  margin: 0;
  aspect-ratio: 4 / 5;
  background: #d9cbb6;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
  padding: 1.5rem;
}
.about h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.about p {
  color: var(--muted);
  margin: 1rem 0 0;
  max-width: 38em;
}

/* Contact */
.contact {
  padding: 5rem 0 5.5rem;
  background: var(--dark);
  color: #e8dfd2;
}
.contact h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: #f4ece1;
}
.contact .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact .blurb {
  color: #b7ad9c;
  margin-top: 1rem;
  max-width: 32ch;
}
.phone-xl {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
  color: #f4ece1;
  margin-top: 1.8rem;
}
.phone-xl:hover { color: #e8b089; }
.contact-meta {
  margin-top: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.contact-meta a:hover { color: #e8b089; }

.form {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}
.form label span,
.form .lbl {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 0.3rem;
  color: #c4b6a4;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  background: #211c18;
  border: 1px solid #3a342e;
  padding: 0.7rem 0.8rem;
  color: #f4ece1;
}
.form textarea { min-height: 8rem; resize: vertical; }
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--copper);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-note {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.84rem;
  color: #b7ad9c;
}
.form-note input { width: auto; margin-top: 0.2rem; }
.legal-link {
  margin: 0;
  font-size: 0.82rem;
}
.legal-link a { color: #e8b089; text-decoration: underline; }
.form-status { min-height: 1.3em; margin: 0; font-size: 0.9rem; }
.form-status.is-ok { color: #c6d4a8; }
.form-status.is-err { color: #e8b089; }

/* Footer */
.site-footer {
  background: var(--dark);
  color: #9a8d80;
  border-top: 1px solid #2c2925;
  padding: 1.6rem 0 2rem;
  font-size: 0.88rem;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-footer a:hover { color: #e8dfd2; }
.elp-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0.38;
  font-size: 0.72rem;
  margin: 1.4rem 0 0;
  transition: opacity 0.2s;
  color: #fff;
}
.elp-credit:hover { opacity: 0.72; }
.elp-credit img { height: 18px; width: auto; }

/* Legal pages */
.page-hero {
  padding: 3.5rem 0 1rem;
}
.page-hero .wrap,
.legal {
  max-width: 42rem;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.legal { padding: 0 0 5rem; }
.legal h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.6rem;
}
.legal p { color: var(--muted); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem 5vw 1.2rem;
    border-bottom: 1px solid var(--line);
    gap: 0.85rem;
  }
  .nav.is-open { display: flex; }
  .hero-stage { padding: 4.6rem 1.1rem 2.6rem; }
  .hero-logo { width: min(340px, 86vw); }
  .brand img { height: 72px; max-height: 72px; }
  .job,
  .about-grid,
  .contact .wrap,
  .photos-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .photos-side img { aspect-ratio: 5 / 3; }
}
