:root {
  --color-background: #faf3ed;
  --color-surface: #f1e5d9;
  --color-text: #504034;
  --color-text-muted: #685850;
  --color-accent: #b48820;
  --color-accent-soft: #c8a044;
  --color-header: rgba(250, 243, 237, 0.94);
  --font-serif: Palatino, "Palatino Linotype", "Iowan Old Style", "Times New Roman", Times, serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --measure: 38rem;
  --page: 64rem;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --header-h: 4.25rem;
  --radius: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

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

a {
  color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-text);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

h1,
h2,
h3,
blockquote {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: var(--color-text);
}

h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin: 0.5rem 0 1.25rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1.25rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -4rem;
  z-index: 100;
  background: var(--color-text);
  color: var(--color-background);
  padding: 0.5rem 0.85rem;
}

.skip-link:focus {
  top: 0.75rem;
  color: var(--color-background);
}

.wrap,
.narrow,
.header-inner {
  width: min(100% - 2 * var(--gutter), var(--page));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2 * var(--gutter), var(--measure));
}

.kicker {
  margin: 0 0 0.75rem;
  color: var(--color-accent);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.muted {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--color-header);
  border-bottom: 1px solid rgba(180, 136, 32, 0.18);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
}

.brand-logo {
  width: auto;
}

.brand-logo--desktop {
  display: none;
  height: 2.6rem;
}

.brand-logo--mobile {
  display: block;
  height: 2.35rem;
}

.nav-toggle {
  appearance: none;
  background: transparent;
  border: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.6rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--color-text);
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 1.2rem;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: var(--header-h);
  background: var(--color-background);
  border-bottom: 1px solid rgba(180, 136, 32, 0.18);
  padding: 0.5rem var(--gutter) 1.25rem;
}

.site-nav.is-open {
  display: block;
}

.site-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.site-nav a {
  display: block;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 0.7rem 0;
}

.site-nav a:hover {
  color: var(--color-accent);
}

.hero {
  text-align: center;
  padding: clamp(2.5rem, 8vw, 5.5rem) var(--gutter) clamp(3rem, 8vw, 5rem);
}

.hero-mark {
  width: min(18rem, 72vw);
  margin: 0 auto 1.75rem;
}

.hero-lead {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.35rem;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  text-decoration: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  background: transparent;
}

.btn:hover {
  background: var(--color-accent);
  color: var(--color-background);
}

.btn--ghost {
  border-color: rgba(80, 64, 52, 0.28);
  color: var(--color-text);
}

.btn--ghost:hover {
  border-color: var(--color-text);
  background: var(--color-text);
  color: var(--color-background);
}

.section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.section--alt {
  background: var(--color-surface);
}

.about .wrap::after {
  content: "";
  display: table;
  clear: both;
}

/* Portrait: zorica.png (Fade im Bild). Variante A: html/assets/zorica-a.jpg, CSS-Masken in Commit 3321159. */
.about-portrait {
  float: right;
  width: 44%;
  max-width: 12.25rem;
  margin: 0 0 3.9rem 1.2rem;
  shape-outside: inset(4% 4% 26% 0%);
  shape-margin: 0.95rem;
}

.about-portrait img {
  width: 100%;
  max-width: none;
  height: auto;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.about > .wrap > h3:first-of-type {
  clear: both;
  margin-top: 1.6rem;
}

.about p,
.about li {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: none;
}

.about h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  margin: 2.4rem 0 0.9rem;
}

.about blockquote {
  margin: 1.5rem 0;
  padding: 0 0 0 1.1rem;
  border-left: 1px solid var(--color-accent);
  max-width: none;
}

.about blockquote p {
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 0 0 0.75rem;
}

.about blockquote p:last-child {
  margin-bottom: 0;
}

.about p:last-child {
  margin-bottom: 0;
}

.about-more {
  clear: both;
  margin-top: 0.35rem;
}

.about-more summary {
  display: inline-block;
  margin: 0.35rem 0 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.about-more summary:hover {
  color: var(--color-text);
}

.about-more summary::-webkit-details-marker {
  display: none;
}

.about-more summary::marker {
  content: "";
}

.about-more-close {
  display: none;
}

.about-more[open] .about-more-open {
  display: none;
}

.about-more[open] .about-more-close {
  display: inline;
}

.about-more[open] summary {
  margin-bottom: 0.5rem;
}

.about-more h3:first-of-type {
  margin-top: 1.5rem;
}

.schedule {
  max-width: 28rem;
  margin: 0 0 1.5rem;
}

.schedule li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(180, 136, 32, 0.22);
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.schedule-day {
  letter-spacing: 0.06em;
}

.schedule-time {
  color: var(--color-text-muted);
  white-space: nowrap;
}

.plain-link {
  color: inherit;
  text-decoration: none;
}

.plain-link:hover {
  color: var(--color-accent);
}

.prices {
  display: grid;
  gap: 1.25rem;
}

.prices li {
  padding: 1.5rem 0 0.25rem;
  border-top: 1px solid rgba(180, 136, 32, 0.22);
}

.price-name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.price-meta {
  margin: 0.15rem 0 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.price-value {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
}

.price-was {
  margin: 0.25rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.contact p {
  margin: 0 0 0.4rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

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

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

.quote {
  text-align: center;
}

.ornament {
  width: 6.5rem;
  margin: 0 auto 1.75rem;
  opacity: 0.92;
}

.quote blockquote {
  margin: 0;
}

.quote blockquote p {
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  line-height: 1.5;
  margin: 0;
}

.site-footer {
  background: var(--color-background);
  border-top: 0;
  padding: 2.5rem 0 3rem;
  text-align: center;
  font-size: 0.92rem;
}

.footer-inner p {
  margin: 0 0 0.4rem;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

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

@media (min-width: 48rem) {
  .about-portrait {
    width: min(40%, 22rem);
    max-width: none;
    margin: 0 0 1.25rem 1.75rem;
    shape-outside: inset(2% 6% 6% 0%);
    shape-margin: 1.15rem;
  }

  .about > .wrap > h3:first-of-type {
    clear: none;
    margin-top: 0.85rem;
  }

  .brand-logo--desktop {
    display: block;
  }

  .brand-logo--mobile {
    display: none;
  }

  .nav-toggle {
    display: none;
  }

  .header-inner {
    position: relative;
  }

  .site-nav {
    display: block;
    position: static;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .site-nav ul {
    flex-direction: row;
    gap: 1.4rem;
  }

  .site-nav a {
    padding: 0;
  }

  .prices {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .prices li {
    padding: 1.75rem 0 0;
  }
}

@media (min-width: 80rem) {
  body {
    font-size: 1.125rem;
  }
}
