:root {
  --background: #f8f4ee;
  --surface: #fffdf9;
  --surface-strong: #efe6da;
  --foreground: #27231f;
  --muted: #716a63;
  --primary: #8c5e3c;
  --primary-dark: #684126;
  --accent: #d7b18f;
  --border: #dcd1c4;
  --white: #ffffff;
  --shadow: 0 14px 50px rgba(56, 43, 32, 0.12);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--foreground);
  background: var(--background);
  font-family: var(--sans);
  line-height: 1.65;
}

body.menu-open,
body.booking-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 104px);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(36px, 5vw, 66px);
}

h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

p {
  color: var(--muted);
}

section {
  position: relative;
  padding: 100px 0;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(780px, 100%);
}

.eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead {
  max-width: 720px;
  font-size: 19px;
  line-height: 1.8;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--primary);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.button.secondary {
  color: var(--foreground);
  background: transparent;
  border-color: var(--border);
}

.button.secondary:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

/* Navbar */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 14px 18px;
}

.nav-inner {
  display: flex;
  width: min(1160px, 100%);
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  transition: 300ms ease;
}

.navbar.scrolled .nav-inner {
  border-color: rgba(140, 94, 60, 0.16);
  background: rgba(248, 244, 238, 0.82);
  box-shadow: 0 12px 35px rgba(50, 38, 28, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: var(--primary);
  font-family: var(--serif);
  font-size: 14px;
}

.brand-logo {
  width: auto;
  height: 42px;
  mix-blend-mode: multiply;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
}

.brand small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links > a:not(.button) {
  position: relative;
  font-size: 14px;
}

.nav-links > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--primary);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-links > a:hover::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  color: var(--foreground);
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 27px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  opacity: 0;
  background: var(--surface);
  transition: 300ms ease;
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: 34px;
}

.menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  color: var(--foreground);
  background: transparent;
  font-size: 38px;
  cursor: pointer;
}

/* Hero */
.hero {
  display: flex;
  min-height: 92vh;
  align-items: flex-end;
  overflow: hidden;
  padding: 170px 0 80px;
  background: var(--surface-strong);
}

.hero-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-art::before {
  position: absolute;
  top: -12%;
  right: -4%;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(140, 94, 60, 0.25);
  border-radius: 50%;
  content: "";
}

.hero-art::after {
  position: absolute;
  right: 8%;
  bottom: -40%;
  width: min(46vw, 600px);
  aspect-ratio: 1;
  border: 110px solid rgba(140, 94, 60, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 span {
  color: var(--primary);
  font-style: italic;
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
  margin-top: 72px;
  border-top: 1px solid rgba(140, 94, 60, 0.28);
}

.hero-fact {
  padding: 22px 20px 0 0;
}

.hero-fact strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.hero-fact span {
  color: var(--muted);
  font-size: 13px;
}

.hero-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(28vw, 350px);
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Content */
.intro-grid,
.laser-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
}

.visual-panel {
  position: sticky;
  top: 110px;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.visual-panel svg {
  width: 74%;
  height: auto;
}

.visual-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band-media {
  overflow: hidden;
  border-radius: var(--radius);
}

.band-media img {
  width: 100%;
  height: auto;
}

.feature-list {
  border-top: 1px solid var(--border);
}

.feature {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}

.feature-number {
  color: var(--primary);
  font-family: var(--serif);
  font-size: 28px;
}

.feature p {
  margin-bottom: 0;
}

.band {
  color: var(--white);
  background: var(--primary-dark);
}

.band p,
.band .eyebrow {
  color: #e9d9ca;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.band .card {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.06);
}

.band .card p {
  color: #e4d7cc;
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 35px;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--primary);
  font-family: var(--serif);
  font-size: 20px;
}

.band .card-icon {
  color: var(--white);
}

/* Ablauf */
.steps {
  margin-top: 60px;
  counter-reset: steps;
}

.step {
  display: grid;
  grid-template-columns: 100px 0.7fr 1.3fr;
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid var(--border);
  counter-increment: steps;
}

.step::before {
  color: var(--primary);
  content: "0" counter(steps);
  font-family: var(--serif);
  font-size: 30px;
}

.step p {
  margin-bottom: 0;
}

/* Preise */
.price-group {
  margin-top: 48px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.price-table thead th {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-table th:first-child,
.price-table td:first-child {
  padding-left: 0;
}

.price-table th:not(:first-child),
.price-table td:not(:first-child) {
  width: 120px;
  text-align: right;
}

/* FAQ */
details {
  border-top: 1px solid var(--border);
}

details:last-child {
  border-bottom: 1px solid var(--border);
}

summary {
  position: relative;
  padding: 25px 45px 25px 0;
  font-family: var(--serif);
  font-size: 22px;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 23px;
  right: 4px;
  color: var(--primary);
  content: "+";
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 300;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 780px;
  padding-bottom: 26px;
}

/* Kontakt */
.contact-box {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.contact-row {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row span,
.contact-row strong {
  display: block;
}

.contact-row span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-row strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  outline: none;
  color: var(--foreground);
  background: var(--surface);
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(140, 94, 60, 0.12);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.map {
  position: relative;
  min-height: 440px;
  margin-top: 60px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.map-consent {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
}

.map-consent > div {
  max-width: 540px;
}

.map iframe {
  width: 100%;
  height: 440px;
  border: 0;
}

/* Rechtliches */
.legal {
  background: var(--surface);
}

.legal-block {
  margin-top: 44px;
}

.legal-block h3 {
  margin-top: 34px;
}

/* Footer */
footer {
  padding: 65px 0 30px;
  color: #e9ddd2;
  background: #29231f;
}

footer p {
  color: #bfb0a4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9f9187;
  font-size: 12px;
}

/* Cookie-Banner */
.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2000;
  display: none;
  max-width: 620px;
  margin-left: auto;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner p {
  margin-bottom: 18px;
  font-size: 13px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Terminbuchung */
.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(39, 35, 31, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.booking-overlay[hidden] {
  display: none;
}

.booking-modal {
  display: flex;
  width: min(660px, 100%);
  max-height: min(780px, calc(100dvh - 36px));
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.booking-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 26px 28px 4px;
}

.booking-head .eyebrow {
  margin-bottom: 8px;
}

.booking-head h3 {
  margin-bottom: 0;
}

.booking-close {
  border: 0;
  margin: -6px -8px 0 0;
  padding: 0 8px;
  color: var(--muted);
  background: transparent;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.booking-body {
  flex: 1;
  padding: 18px 28px 22px;
  overflow-y: auto;
}

.booking-step[hidden] {
  display: none;
}

.seg {
  display: inline-flex;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.seg button {
  padding: 10px 24px;
  border: 0;
  color: var(--foreground);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.seg button.active {
  color: var(--white);
  background: var(--primary);
}

.zone-group {
  margin-bottom: 24px;
}

.zone-group h4 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.zone {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
}

.zone input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 0 12px 0 0;
  padding: 0;
  accent-color: var(--primary);
}

.zone .zone-price {
  margin-left: auto;
  padding-left: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.chip input {
  display: none;
}

.chip span {
  display: inline-block;
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.chip input:checked + span {
  border-color: var(--primary);
  color: var(--white);
  background: var(--primary);
}

.booking-hint {
  margin-bottom: 0;
  font-size: 13px;
}

.booking-summary {
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-strong);
  font-size: 14px;
}

.booking-summary ul {
  margin: 0 0 10px;
  padding-left: 18px;
  color: var(--muted);
}

.booking-summary p {
  margin-bottom: 0;
}

.booking-error {
  margin: 14px 0 0;
  color: #a33f2c;
  font-size: 14px;
}

.booking-step textarea {
  min-height: 90px;
}

.booking-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 28px;
  border-top: 1px solid var(--border);
}

.booking-sum {
  color: var(--muted);
  font-size: 14px;
}

.booking-sum strong {
  color: var(--foreground);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.booking-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: auto;
}

.booking-nav .button[hidden] {
  display: none;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-photo {
    display: none;
  }
}

@media (max-width: 900px) {
  section {
    padding: 78px 0;
  }

  .nav-links {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .intro-grid,
  .laser-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    position: relative;
    top: auto;
    min-height: 430px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 60px 1fr;
  }

  .step p {
    grid-column: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 30px, 1160px);
  }

  .navbar {
    padding: 10px;
  }

  .nav-inner {
    min-height: 62px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 135px;
  }

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

  .hero-fact {
    padding: 15px 0;
    border-bottom: 1px solid rgba(140, 94, 60, 0.2);
  }

  .feature {
    grid-template-columns: 42px 1fr;
  }

  .step {
    grid-template-columns: 45px 1fr;
    gap: 14px;
  }

  .price-table {
    font-size: 13px;
  }

  .price-table th:not(:first-child),
  .price-table td:not(:first-child) {
    width: 72px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .booking-overlay {
    padding: 10px;
  }

  .booking-head,
  .booking-body,
  .booking-foot {
    padding-right: 18px;
    padding-left: 18px;
  }

  .booking-nav {
    width: 100%;
  }

  .booking-nav .button {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Unterseiten (Impressum / Datenschutz) */
.page-section {
  padding-top: 190px;
}
