:root {
  --porcelain: #fffaf6;
  --shell: #f2e5dd;
  --blush: #dfb5b4;
  --rouge: #7f1225;
  --rouge-dark: #4b0b16;
  --ink: #171113;
  --soft-ink: #514349;
  --chrome: #c8c2b7;
  --mint: #77a892;
  --line: rgba(23, 17, 19, 0.16);
  --shadow: rgba(75, 11, 22, 0.18);
  --serif: "Sentient", Georgia, serif;
  --sans: "Switzer", "Helvetica Neue", Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(23, 17, 19, 0.04) 1px, transparent 1px) 0 0 / 76px 76px,
    var(--porcelain);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(23, 17, 19, 0.05) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(127, 18, 37, 0.05) 0 1px, transparent 1px);
  background-size: 18px 18px, 26px 26px;
  mix-blend-mode: multiply;
  opacity: 0.45;
  z-index: 10;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

::selection {
  background: var(--rouge);
  color: var(--porcelain);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  padding: 0 44px;
  background: rgba(255, 250, 246, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.header-call,
.nav a,
.btn {
  text-decoration: none;
}

.brand {
  display: inline-grid;
  gap: 0;
  justify-self: start;
  line-height: 1;
}

.brand span {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.brand b {
  color: var(--rouge);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav a,
.header-call {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 10px 0;
  color: var(--soft-ink);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--rouge);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  justify-self: end;
  padding: 12px 16px;
  color: var(--porcelain);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 4px;
}

.header-call:hover {
  background: var(--rouge);
  border-color: var(--rouge);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 38px;
  min-height: calc(100svh - 84px);
  padding: 56px 44px 0;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  left: 44px;
  top: 44px;
  width: 114px;
  height: 18px;
  background: var(--rouge);
  border-radius: 999px 999px 12px 12px;
  box-shadow:
    138px 58px 0 var(--mint),
    276px 116px 0 var(--chrome);
  opacity: 0.92;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 760px;
  padding-top: 58px;
  animation: rise 620ms ease both;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rouge);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: 5.9rem;
  font-weight: 500;
  line-height: 0.96;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--soft-ink);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 4px;
  border: 1px solid var(--ink);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  gap: 14px;
  color: var(--porcelain);
  background: var(--rouge);
  border-color: var(--rouge);
}

.btn-primary strong {
  font-size: 0.95rem;
  letter-spacing: 0;
}

.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.btn-whatsapp {
  color: var(--porcelain);
  background: var(--mint);
  border-color: var(--mint);
}

.btn-whatsapp:hover {
  color: var(--porcelain);
  background: #527d6b;
  border-color: #527d6b;
}

.btn-secondary {
  background: transparent;
}

.btn-secondary:hover {
  color: var(--porcelain);
  background: var(--ink);
}

.hero-media {
  position: relative;
  align-self: end;
  margin: 0;
  min-height: 520px;
  animation: rise 720ms 120ms ease both;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 34px -22px -26px 42px;
  background:
    linear-gradient(135deg, transparent 0 14%, rgba(127, 18, 37, 0.92) 14% 16%, transparent 16%),
    var(--shell);
  border: 1px solid var(--line);
  transform: rotate(1.5deg);
}

.hero-media img {
  position: relative;
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 34px 80px var(--shadow);
}

.hero-media figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  color: var(--porcelain);
  background: rgba(23, 17, 19, 0.78);
  border: 1px solid rgba(255, 250, 246, 0.22);
  border-radius: 4px;
  backdrop-filter: blur(12px);
  font-size: 0.92rem;
}

.hero-media figcaption span {
  color: var(--chrome);
}

.hero-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 36px -44px 0;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--porcelain);
}

.hero-strip div {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 26px 44px;
  border-right: 1px solid rgba(255, 250, 246, 0.16);
}

.hero-strip div:last-child {
  border-right: 0;
}

.hero-strip span,
.small-note,
.site-footer p:last-child {
  color: rgba(255, 250, 246, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-strip strong {
  font-family: var(--serif);
  font-size: 1.34rem;
  font-weight: 500;
  line-height: 1.15;
}

.section {
  padding: 92px 44px;
}

.intro-band {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 48px;
  background: var(--rouge-dark);
  color: var(--porcelain);
}

.section-marker {
  color: var(--blush);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro-text p {
  max-width: 960px;
  margin: 0;
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: 1.16;
}

.section-header {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 44px;
}

.section-header h2,
.hours-panel h2,
.contact-panel h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.02;
}

.service-grid,
.quote-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.service-card,
.quote-board article {
  min-height: 280px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 246, 0.62);
}

.service-card:last-child,
.quote-board article:last-child {
  border-right: 0;
}

.service-card {
  display: grid;
  align-content: space-between;
  gap: 24px;
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  background: var(--shell);
  transform: translateY(-4px);
}

.service-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--porcelain);
  background: var(--rouge);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 500;
}

.service-card p,
.quote-board p {
  margin-bottom: 0;
  color: var(--soft-ink);
}

.praise {
  background: var(--shell);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-board article {
  min-height: 220px;
  background: var(--porcelain);
}

.stars {
  margin-bottom: 22px;
  color: var(--rouge);
  letter-spacing: 0.1em;
}

.quote-board p {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.25;
}

.hours-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 32px;
  padding-bottom: 44px;
}

.hours-panel,
.contact-panel {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--porcelain);
}

.hours-list {
  margin-top: 34px;
  border-top: 1px solid var(--ink);
}

.hours-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.hours-list .is-today {
  color: var(--rouge);
  font-weight: 800;
}

.hours-list .is-today span::after {
  content: " heute";
  margin-left: 8px;
  color: var(--mint);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.small-note {
  margin: 24px 0 0;
  color: var(--soft-ink);
}

address {
  display: grid;
  gap: 4px;
  margin-top: 32px;
  font-style: normal;
}

address strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-links a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.contact-links a::after {
  content: "↗";
  color: var(--rouge);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 44px;
  color: var(--porcelain);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding: 18px 24px;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 44px 24px 0;
  }

  .hero::before {
    left: 24px;
  }

  h1 {
    font-size: 4.25rem;
  }

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

  .hero-media img {
    height: 470px;
  }

  .hero-strip {
    margin-left: -24px;
    margin-right: -24px;
  }

  .hero-strip div {
    padding: 24px;
  }

  .section,
  .hours-contact {
    padding-left: 24px;
    padding-right: 24px;
  }

  .intro-band,
  .section-header,
  .hours-contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .quote-board {
    grid-template-columns: 1fr;
  }

  .service-card,
  .quote-board article {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15.5px;
  }

  .site-header {
    gap: 14px;
  }

  .brand span {
    font-size: 1.42rem;
  }

  .header-call {
    padding: 10px 12px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .nav {
    gap: 22px;
  }

  .nav a {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

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

  h1 {
    font-size: 2.8rem;
    line-height: 1.02;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    padding: 12px 14px;
    letter-spacing: 0.08em;
  }

  .btn-primary {
    display: grid;
    gap: 2px;
  }

  .hero-media img {
    height: 340px;
  }

  .hero-media figcaption {
    position: static;
    display: grid;
    margin-top: -1px;
    background: var(--ink);
    border-radius: 0 0 4px 4px;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .hero-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 246, 0.16);
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .intro-text p,
  .section-header h2,
  .hours-panel h2,
  .contact-panel h2 {
    font-size: 2.35rem;
  }

  .service-card,
  .quote-board article,
  .hours-panel,
  .contact-panel {
    padding: 24px;
  }

  .hours-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .site-footer {
    display: grid;
    padding: 26px 24px;
  }
}
