:root {
  --bg: #f5efe7;
  --surface: #fffdf9;
  --surface-2: #eee4d9;
  --text: #342d29;
  --muted: #776a62;
  --accent: #8a6c5d;
  --accent-dark: #604a40;
  --line: rgba(68, 48, 38, .16);
  --shadow: 0 18px 48px rgba(64, 44, 34, .09);
  --content: 760px;
  --wide: 1180px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; color: var(--text); background: var(--bg); font: 17px/1.72 var(--sans); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: var(--accent-dark); text-underline-offset: .18em; }
a:hover { color: var(--accent); }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 100; background: var(--surface); padding: .75rem 1rem; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(245,239,231,.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.header-inner { width: min(var(--wide), calc(100% - 3rem)); min-height: 96px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { color: var(--text); text-decoration: none; display: grid; gap: .35rem; }
.brand-name { font: 600 clamp(1.5rem, 2.3vw, 2rem)/1 var(--serif); letter-spacing: -.01em; }
.brand-tagline { color: var(--muted); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; }
.site-nav { display: flex; align-items: center; gap: .15rem; }
.site-nav a { color: var(--text); text-decoration: none; border-radius: 999px; padding: .62rem .78rem; font-size: .92rem; }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: rgba(138,108,93,.11); }
.menu-button { display: none; font: inherit; color: var(--accent-dark); border: 1px solid var(--line); background: transparent; border-radius: 999px; padding: .55rem .9rem; }

.page-intro { width: min(var(--wide), calc(100% - 3rem)); margin: 0 auto; padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem); }
.page-intro.has-media { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr); align-items: center; gap: clamp(2.5rem, 6vw, 6rem); }
.intro-copy { max-width: 700px; }
.eyebrow { margin: 0 0 1rem; color: var(--accent); font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; }
h1, h2, h3, h4 { color: var(--text); font-family: var(--serif); font-weight: 500; line-height: 1.13; }
h1 { margin: 0; font-size: clamp(1.8rem, 5vw, 4.2rem); letter-spacing: -.035em; }
.subtitle { margin: 1.25rem 0 0; max-width: 650px; font: italic clamp(1.25rem, 2.2vw, 1.8rem)/1.5 var(--serif); color: #493e38; }
.media-frame { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 22px; background: var(--surface-2); box-shadow: var(--shadow); }
.media-frame picture { display: block; width: 100%; height: 100%; }
.media-frame img { width: 100%; height: 100%; object-position: var(--media-position, center); }
.media-cover img { object-fit: cover; }
.media-contain { padding: clamp(1rem, 3vw, 2.5rem); }
.media-contain img { object-fit: contain; }

.content { width: min(var(--content), calc(100% - 3rem)); margin: 0 auto clamp(5rem, 10vw, 9rem); }
.prose p { margin: 1.2rem 0; }
.prose > p:first-child { font-size: 1.12rem; line-height: 1.8; }
.prose h2 { margin: 4rem 0 1rem; font-size: clamp(2rem, 4vw, 3rem); }
.prose h3 { margin: 2.8rem 0 .8rem; font-size: 1.65rem; }
.prose h4 { margin: 2rem 0 .6rem; font-size: 1.15rem; }
.prose ul { padding-left: 1.25rem; }
.prose li { margin: .4rem 0; }
.prose blockquote { margin: 3rem 0; padding: 1.7rem 2rem; border-left: 3px solid var(--accent); background: var(--surface); box-shadow: var(--shadow); font: italic 1.3rem/1.6 var(--serif); }
.prose blockquote p { margin: 0; }

.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.2rem; margin: 2rem 0; }
.card, .quote-card, .audio-card { background: var(--surface); border: 1px solid rgba(70,50,40,.08); border-radius: 18px; box-shadow: var(--shadow); padding: 1.55rem; }
.card h3, .audio-card h3 { margin-top: .1rem; }
.meta { color: var(--muted); font-size: .92rem; }
.price { font: 600 1.25rem/1.2 var(--serif); }
.quote-card { margin: 1.2rem 0; }
.quote-card p { margin: 0; }
.quote-card cite { display: block; margin-top: .8rem; color: var(--muted); font-style: normal; font-size: .9rem; }
.audio-card audio { width: 100%; margin-top: .8rem; }

.profile { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 2rem; align-items: center; margin: 3rem 0; }
.profile-media { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 18px; background: var(--surface-2); }
.profile-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.credentials { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin: 1.5rem 0; }
.credentials img { width: auto; max-width: 180px; max-height: 72px; object-fit: contain; }
.credentials .logo-square { max-height: 86px; }

.form-grid { display: grid; gap: 1rem; }
.form-grid label { display: grid; gap: .35rem; font-weight: 600; }
.form-grid input, .form-grid textarea { width: 100%; font: inherit; color: var(--text); background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: .82rem .9rem; }
.form-grid textarea { min-height: 180px; resize: vertical; }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-success { padding: 1rem 1.1rem; border: 1px solid #9cad8e; border-radius: 12px; background: #edf2e9; color: #384932; }
.button { display: inline-block; border: 0; border-radius: 999px; padding: .8rem 1.15rem; background: var(--accent-dark); color: white; text-decoration: none; cursor: pointer; }
.button:hover { color: white; background: var(--accent); }

.cta { background: var(--accent-dark); color: #f8f2eb; padding: clamp(4rem, 8vw, 7rem) 1.5rem; }
.cta-inner { width: min(var(--content), 100%); margin: 0 auto; }
.cta h2 { color: white; margin: .35rem 0 1rem; font-size: clamp(2.2rem, 5vw, 4rem); }
.cta .eyebrow { color: #d8c3b7; }
.cta .button { background: #f8f1e9; color: var(--accent-dark); }
.site-footer { padding: 2.7rem 1.5rem; border-top: 1px solid var(--line); color: var(--muted); }
.footer-inner { width: min(var(--wide), 100%); margin: 0 auto; display: flex; justify-content: space-between; gap: 2rem; align-items: flex-end; }
.footer-inner p { margin: 0; }

@media (max-width: 860px) {
  .header-inner { width: min(100% - 2rem, var(--wide)); min-height: 84px; }
  .menu-button { display: inline-block; }
  .site-nav { display: none; position: absolute; top: calc(100% + .5rem); left: 1rem; right: 1rem; padding: .75rem; flex-direction: column; align-items: stretch; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .8rem 1rem; }
  .page-intro, .page-intro.has-media { width: min(100% - 2rem, var(--wide)); display: grid; grid-template-columns: 1fr; gap: 2rem; padding-top: 3.2rem; }
  .media-frame { max-width: 680px; justify-self: center; }
  .profile { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand-name { font-size: 1.55rem; }
  .brand-tagline { letter-spacing: .12em; font-size: .64rem; }
  h1 { font-size: clamp(1.7rem, 8vw, 2.15rem); line-height: 1.1; }
  .prose h2 { margin-top: 3.2rem; font-size: clamp(1.45rem, 6.5vw, 1.8rem); line-height: 1.18; }
  .prose h3 { margin-top: 2.35rem; font-size: clamp(1.18rem, 5.2vw, 1.35rem); line-height: 1.22; }
  .cta h2 { font-size: clamp(1.5rem, 6.8vw, 1.9rem); line-height: 1.18; }
  h1, .prose h2, .prose h3, .cta h2 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
  .subtitle { font-size: clamp(1.08rem, 5.5vw, 1.3rem); line-height: 1.45; }
  .page-intro { padding-bottom: 2.7rem; }
  .media-frame { aspect-ratio: 4 / 3; border-radius: 16px; }
  .media-contain { padding: 1rem; }
  .content { width: min(100% - 2rem, var(--content)); }
  .card-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .credentials img { max-width: 145px; max-height: 62px; }
}

@media (max-width: 360px) {
  h1 { font-size: 1.55rem; }
  .prose h2 { font-size: 1.4rem; }
  .prose h3 { font-size: 1.15rem; }
  .cta h2 { font-size: 1.45rem; }
}

/* Augenblicke – minimalistische Fotogalerie */
.gallery-intro {
  padding-bottom: clamp(2.4rem, 5vw, 4rem);
}
.gallery-shell {
  width: min(980px, calc(100% - 3rem));
  margin: 0 auto clamp(5rem, 10vw, 8rem);
}
.photo-gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.photo-gallery__item {
  grid-column: span 2;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: var(--surface-2);
  cursor: zoom-in;
}
.photo-gallery__grid.has-eight .photo-gallery__item:nth-child(7) { grid-column: 2 / span 2; }
.photo-gallery__grid.has-eight .photo-gallery__item:nth-child(8) { grid-column: 4 / span 2; }
.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, opacity .35s ease;
}
@media (hover: hover) {
  .photo-gallery__item:hover img { transform: scale(1.018); opacity: .94; }
}
.photo-gallery__credit {
  margin: 1.25rem 0 0;
  color: var(--muted);
  text-align: right;
  font-size: .76rem;
  letter-spacing: .02em;
}
.gallery-empty {
  margin: 0;
  color: var(--muted);
  text-align: center;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(22, 18, 16, .97);
  touch-action: pan-y;
}
.lightbox.is-open { display: flex; }
.lightbox__stage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 4.5rem;
}
.lightbox__image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox__close,
.lightbox__previous,
.lightbox__next {
  position: absolute;
  z-index: 2;
  padding: .25rem .55rem;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.78);
  font-family: var(--sans);
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
}
.lightbox__close:hover,
.lightbox__previous:hover,
.lightbox__next:hover { color: #fff; }
.lightbox__close { top: 1rem; right: 1rem; font-size: 2.2rem; }
.lightbox__previous,
.lightbox__next { top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox__previous { left: .6rem; }
.lightbox__next { right: .6rem; }

@media (max-width: 680px) {
  .gallery-shell { width: min(100% - 2rem, 980px); }
  .photo-gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .photo-gallery__item,
  .photo-gallery__grid.has-eight .photo-gallery__item:nth-child(7),
  .photo-gallery__grid.has-eight .photo-gallery__item:nth-child(8) { grid-column: auto; }
  .lightbox__stage { padding: 3rem .5rem; }
  .lightbox__previous, .lightbox__next { display: none; }
}
