:root {
  color-scheme: light;
  --green-950: #0d2417;
  --green-800: #17452c;
  --green-650: #2f7048;
  --green-100: #e9f3ec;
  --white: #ffffff;
  --ink: #17211b;
  --muted: #68746d;
  --line: rgba(23, 33, 27, 0.12);
  --surface: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 80px rgba(13, 36, 23, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f8faf7;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: fixed;
  inset: 16px 16px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: 0 10px 40px rgba(13, 36, 23, 0.08);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 55px rgba(13, 36, 23, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(13, 36, 23, 0.13);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 3px;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(23, 33, 27, 0.72);
  font-size: 0.94rem;
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
}

.nav a:hover {
  background: var(--green-100);
  color: var(--green-950);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-action,
.button-primary {
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 14px 30px rgba(23, 69, 44, 0.22);
}

.button-secondary {
  color: var(--green-950);
  background: var(--white);
  border: 1px solid var(--line);
}

.button-glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(18px);
}

.header-action:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 150px 24px 70px;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 36, 23, 0.18), rgba(13, 36, 23, 0.78)),
    url("https://images.unsplash.com/photo-1558904541-efa843a96f01?auto=format&fit=crop&w=1800&q=88") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(100%, 980px);
  margin: 0 auto;
}

.hero-logo {
  width: min(210px, 42vw);
  height: auto;
  margin-bottom: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 70px rgba(13, 36, 23, 0.22);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-650);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

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

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-title {
  display: grid;
  gap: 0.14em;
  max-width: 960px;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  line-height: 0.95;
}

.hero-title span {
  display: block;
}

.hero-title span:first-child {
  white-space: nowrap;
}

.hero-title span:last-child {
  font-size: 0.72em;
  font-weight: 700;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.3vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.5;
}

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

.quick-contact {
  width: min(1120px, calc(100% - 32px));
  margin: -36px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-tile {
  min-height: 112px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.contact-tile span,
.rating-source,
.form-note {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-tile strong {
  display: block;
  margin-top: 8px;
  font-size: 1.25rem;
}

.section,
.booking-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 108px 0;
}

.section-muted {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - 1120px) / 2));
  background: var(--green-100);
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow),
.booking-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.reviews-panel,
.booking-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(13, 36, 23, 0.07);
}

.service-card {
  min-height: 220px;
  padding: 24px;
}

.service-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--green-800);
  background: var(--green-100);
  font-weight: 800;
}

.service-card p,
.review-card p {
  color: var(--muted);
  line-height: 1.6;
}

.gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-auto-rows: 250px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe9e1;
}

.gallery-large {
  grid-row: span 2;
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  font-weight: 800;
}

.reviews-panel {
  padding: 26px;
}

.rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.rating-number {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
}

.stars {
  color: #f5a400;
  letter-spacing: 0.05em;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.review-card {
  min-height: 170px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.review-card strong,
.feedback-card strong {
  display: block;
  color: var(--green-950);
  margin-top: 12px;
}

.review-photo {
  width: 100%;
  height: 180px;
  margin-bottom: 14px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--green-100);
}

.booking-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--green-950);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(47, 112, 72, 0.18);
  border-color: var(--green-650);
}

.full {
  grid-column: 1 / -1;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.impressum-section {
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.impressum-box {
  display: grid;
  gap: 8px;
  max-width: 520px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(13, 36, 23, 0.07);
  color: var(--muted);
  font-style: normal;
  line-height: 1.5;
}

.impressum-box strong {
  color: var(--green-950);
}

.impressum-box a,
.footer-links a {
  color: var(--green-800);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.feedback-page {
  background: #f8faf7;
}

.legal-page {
  background: #f8faf7;
}

.feedback-header {
  position: sticky;
}

.feedback-hero,
.legal-hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 150px 0 60px;
}

.feedback-hero h1,
.legal-hero h1 {
  max-width: 880px;
  color: var(--green-950);
}

.feedback-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.6;
}

.legal-content {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 96px;
}

.legal-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 60px rgba(13, 36, 23, 0.07);
}

.legal-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.2;
}

.legal-card p {
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-card a {
  color: var(--green-800);
  font-weight: 800;
}

.feedback-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
  padding-top: 40px;
}

.feedback-list {
  display: grid;
  gap: 12px;
}

.feedback-card,
.feedback-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 60px rgba(13, 36, 23, 0.07);
}

.feedback-card {
  padding: 20px;
}

.feedback-card p {
  color: var(--muted);
  line-height: 1.6;
}

.feedback-card small {
  color: var(--muted);
}

.feedback-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.compact-heading {
  margin-bottom: 4px;
}

.compact-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.consent-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.consent-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    inset: 10px;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 20px;
  }

  .nav {
    display: none;
  }

  .header-action {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 88vh;
    padding: 112px 16px 60px;
  }

  .hero-logo {
    width: min(170px, 46vw);
    margin-bottom: 20px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .quick-contact {
    margin-top: -24px;
  }

  .quick-contact,
  .review-list,
  .booking-section,
  .contact-section,
  .feedback-layout {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: auto;
    padding: 18px;
  }

  .service-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    font-size: 0.82rem;
  }

  .service-card h3 {
    margin-bottom: 6px;
    font-size: 1rem;
  }

  .service-card p {
    margin-bottom: 0;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .gallery {
    display: none;
  }

  #arbeiten {
    display: none;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .contact-actions {
    justify-content: stretch;
  }

  .contact-actions .button,
  .hero-actions .button,
  .review-actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .site-header {
    grid-template-columns: auto;
    inset: 10px auto auto 10px;
    width: auto;
    max-width: calc(100% - 20px);
    padding: 7px 10px 7px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
  }

  .brand {
    justify-content: flex-start;
  }

  .brand strong {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.86rem;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 84vh;
    padding-top: 92px;
  }

  .hero-logo {
    display: none;
  }

  .feedback-hero,
  .legal-hero {
    padding: 108px 0 24px;
  }

  .feedback-hero p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .legal-content {
    padding-bottom: 58px;
  }

  .legal-card {
    padding: 18px;
  }

  .feedback-form,
  .feedback-card {
    padding: 16px;
  }

  .section,
  .booking-section {
    padding: 58px 0;
  }

  .quick-contact {
    gap: 8px;
  }

  .contact-tile strong {
    font-size: 1.05rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    align-items: start;
    padding: 14px;
  }

  .service-icon {
    margin-bottom: 0;
  }

  .service-card h3,
  .service-card p {
    grid-column: 2;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading p:not(.eyebrow),
  .booking-copy p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .reviews-panel {
    padding: 18px;
  }

  .review-card {
    min-height: auto;
    padding: 14px;
  }

  .booking-section {
    gap: 18px;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4.8rem);
    line-height: 1;
  }

  .hero-title {
    gap: 0.18em;
    font-size: clamp(2rem, 9.8vw, 3.6rem);
  }

  .hero-title span:last-child {
    font-size: 0.78em;
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 3rem);
    line-height: 1.04;
  }

  .hero-actions .button,
  .contact-tile {
    min-height: 52px;
  }

  .contact-tile {
    padding: 18px;
  }

  .rating-number {
    font-size: 2.7rem;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  .hero {
    padding-top: 88px;
  }

  .brand strong {
    max-width: 118px;
    font-size: 0.82rem;
  }
}
