/* Cormorant Garamond (lokal, aus ./fonts) */
@font-face {
  font-display: swap;
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/cormorant-garamond-v21-latin-500.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2');
}

/* Jost (lokal, aus ./fonts) */
@font-face {
  font-display: swap;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/jost-v20-latin-300.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/jost-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/jost-v20-latin-500.woff2') format('woff2');
}

:root {
  /* Nur helles Design — verhindert automatisches Abdunkeln durch Browser-Dark-Mode */
  color-scheme: only light;
  --ink: #2B2825;
  --ink-soft: #454039;
  --bg: #F6F1E8;
  --bg-alt: #EFE7D9;
  --card: #FCFAF5;
  --sage: #8C9C86;
  --sage-light: #B7C2A9;
  --text: #5B5346;
  --text-soft: #6B6357;
  --muted: #8A8272;
  --label: #726A5E;
  --border: rgba(43, 40, 37, 0.08);
  --border-strong: rgba(43, 40, 37, 0.25);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Jost', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: #5F6E58; text-decoration: none; }
a:hover { color: var(--ink); }
::selection { background: #C9BBA2; color: var(--ink); }
img { max-width: 100%; }

/* Ohne JavaScript sofort sichtbar; mit JS sanft eingeblendet */
.no-js .reveal { opacity: 1 !important; transform: none !important; }
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.08;
  color: var(--ink);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0.04em;
  transition: background .25s ease, border-color .25s ease, opacity .25s ease, transform .25s ease;
}
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--dark { background: var(--ink); color: var(--bg); }
.btn--dark:hover { background: var(--ink-soft); color: var(--bg); }
.btn--outline { border: 1px solid var(--border-strong); color: var(--ink); }
.btn--outline:hover { border-color: var(--ink); }
.btn--light { background: var(--bg); color: var(--ink); }
.btn--light:hover { opacity: 0.85; }
.btn__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage-light); display: inline-block; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 241, 232, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: 1120px; margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 40px; width: auto; display: block; }
.nav {
  max-width: 1120px; margin: 0 auto; padding: 0 20px 10px;
  display: flex; gap: 22px; overflow-x: auto;
  scrollbar-width: none; white-space: nowrap;
}
.nav::-webkit-scrollbar { display: none; }
.nav a { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--label); }

/* Mobile-Navigation (Burger-Menü) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  border: none; background: transparent; cursor: pointer; flex-shrink: 0;
}
.nav-toggle__bar {
  width: 22px; height: 2px; background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 20px 40px -24px rgba(43, 40, 37, 0.4);
  padding: 4px 20px 20px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 14px 4px;
  font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--label);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav__cta { justify-content: center; margin-top: 12px; padding: 14px 30px; }

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav { display: none; }
  .header-cta { display: none; }
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  overflow: hidden;
}
.hero__inner {
  max-width: 1120px; margin: 0 auto;
  padding: clamp(56px, 9vw, 110px) 20px clamp(40px, 6vw, 70px);
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(32px, 5vw, 64px);
}
.hero__content { flex: 1 1 320px; min-width: 280px; }
.hero__title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(44px, 8vw, 76px); line-height: 1.02; color: var(--ink);
  margin-bottom: 22px;
}
.hero__lead {
  font-size: clamp(16px, 2.2vw, 19px); line-height: 1.7; color: var(--text);
  max-width: 46ch; margin-bottom: 34px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__meta { margin-top: 24px; font-size: 14px; color: var(--muted); }
.hero__media { flex: 1 1 300px; min-width: 260px; }
.hero__frame {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(43, 40, 37, 0.45); aspect-ratio: 4 / 5;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__credit { margin-top: 10px; font-size: 12px; line-height: 1.5; color: var(--muted); text-align: right; }
.hero__credit a { color: var(--muted); text-decoration: underline; }
.hero__credit a:hover { color: var(--ink); }

/* Generischer Section-Aufbau */
.section { padding: clamp(64px, 9vw, 110px) 20px; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--ink); color: var(--bg); padding: clamp(64px, 9vw, 104px) 20px; }
.section__inner { max-width: 1120px; margin: 0 auto; }
.section__inner--narrow { max-width: 1000px; }
.section__inner--tight { max-width: 720px; }

.split { display: flex; flex-wrap: wrap; gap: clamp(36px, 5vw, 64px); align-items: center; }
.split > * { flex: 1 1 300px; min-width: 280px; }

.media-frame {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 50px -28px rgba(43, 40, 37, 0.4); aspect-ratio: 4 / 3;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.body-text { font-size: 16.5px; line-height: 1.8; color: var(--text); margin-bottom: 18px; }
.body-text:last-child { margin-bottom: 0; }

.callout {
  display: flex; align-items: flex-start; gap: 14px; margin-top: 26px;
  padding: 20px 22px; background: var(--card); border: 1px solid var(--border); border-radius: 16px;
}
.callout__dot { width: 10px; height: 10px; margin-top: 7px; background: #BFA48C; transform: rotate(45deg); flex-shrink: 0; }
.callout p { font-size: 15.5px; line-height: 1.7; color: var(--text); }
.callout strong { color: var(--ink); font-weight: 500; }

/* Bildergalerie (Swipe) */
.gallery { position: relative; }
.gallery__viewport {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 50px -28px rgba(43, 40, 37, 0.4); aspect-ratio: 4 / 3;
}
.gallery__track { display: flex; height: 100%; touch-action: pan-y; transition: transform .45s ease; }
.gallery__slide { flex: 0 0 100%; height: 100%; }
.gallery__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%; border: none;
  background: rgba(246, 241, 232, 0.85); color: var(--ink);
  font-size: 16px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.gallery__nav:hover { background: var(--bg); }
.gallery__nav--prev { left: 12px; }
.gallery__nav--next { right: 12px; }
.gallery__dots { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.gallery__dot { width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; background: var(--border-strong); cursor: pointer; }
.gallery__dot.is-active { background: var(--sage); }

/* Inhaberin */
.owner-photo {
  border-radius: 20px; overflow: hidden; background: var(--bg);
  box-shadow: 0 24px 50px -28px rgba(43, 40, 37, 0.4);
  aspect-ratio: 370 / 600; max-width: 340px; margin: 0 auto;
}
.owner-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.quote { font-family: var(--font-serif); font-style: italic; font-size: 24px; color: #5F6E58; margin-top: 28px; }

/* Leistungen */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.service-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  padding: 32px 26px; transition: transform .35s ease, box-shadow .35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -26px rgba(43, 40, 37, 0.4); }
.service-card__icon {
  width: 52px; height: 52px; border: 1px solid #C6B79C; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.service-card__icon span { width: 12px; height: 12px; background: var(--sage); transform: rotate(45deg); display: block; }
.service-card__title { font-family: var(--font-serif); font-weight: 600; font-size: 26px; color: var(--ink); margin-bottom: 10px; }
.service-card__desc { font-size: 15px; line-height: 1.7; color: var(--text-soft); }

/* Oeffnungszeiten */
.hours-list { list-style: none; border-top: 1px solid rgba(246, 241, 232, 0.14); }
.hours-row {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 16px 4px; border-bottom: 1px solid rgba(246, 241, 232, 0.14);
}
.hours-row.is-today { background: rgba(183, 194, 169, 0.14); border-radius: 12px; padding-left: 16px; padding-right: 16px; }
.hours-row__day { display: inline-flex; align-items: center; gap: 12px; font-size: 17px; letter-spacing: 0.02em; }
.hours-row__dot { width: 8px; height: 8px; transform: rotate(45deg); display: inline-block; background: var(--sage-light); }
.hours-row.is-closed .hours-row__dot { background: #7A736A; }
.hours-row__badge {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
  background: var(--sage-light); padding: 3px 9px; border-radius: 999px; display: none;
}
.hours-row.is-today .hours-row__badge { display: inline-block; }
.hours-row__time { font-size: 17px; font-family: var(--font-serif); color: #F6F1E8; }
.hours-row.is-closed .hours-row__time { color: #9A9187; }

/* Kontakt */
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-row__dot { width: 9px; height: 9px; margin-top: 8px; background: var(--sage); transform: rotate(45deg); flex-shrink: 0; }
.info-row__label { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.info-row__value { font-size: 17px; line-height: 1.6; color: var(--ink); }
.info-row__value--phone { font-size: 20px; font-family: var(--font-serif); }
.contact-list { display: flex; flex-direction: column; gap: 22px; }

.contact-card {
  display: flex; flex-direction: column; justify-content: center; gap: 22px;
  height: 100%; min-height: 340px; background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 24px 50px -28px rgba(43, 40, 37, 0.4);
}
.contact-card__head { display: flex; align-items: center; gap: 14px; }
.contact-card__head span { width: 12px; height: 12px; background: var(--sage); transform: rotate(45deg); flex-shrink: 0; }
.contact-card__head p { font-family: var(--font-serif); font-size: 26px; color: var(--ink); }

/* Footer */
.site-footer { background: var(--bg-alt); padding: clamp(48px, 7vw, 72px) 20px 40px; border-top: 1px solid var(--border); }
.footer__top { max-width: 1120px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; align-items: flex-start; }
.footer__brand img { height: 44px; width: auto; margin-bottom: 16px; display: block; }
.footer__brand p { font-size: 15px; line-height: 1.7; color: var(--text); }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; letter-spacing: 0.06em; color: var(--label); cursor: pointer; }
.footer__bottom { max-width: 1120px; margin: 36px auto 0; padding-top: 24px; border-top: 1px solid rgba(43, 40, 37, 0.1); font-size: 13px; color: var(--muted); }

/* Rechtstexte (Impressum / Datenschutz) */
.overlay {
  display: none; position: fixed; inset: 0; z-index: 100;
  background: rgba(43, 40, 37, 0.5); backdrop-filter: blur(4px);
  align-items: flex-start; justify-content: center;
  padding: clamp(16px, 4vw, 56px) 16px; overflow-y: auto;
}
.overlay.is-open { display: flex; }
.overlay__panel {
  position: relative; width: 100%; max-width: 720px; background: var(--bg);
  border-radius: 22px; padding: clamp(28px, 5vw, 52px);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.5);
}
.overlay__close {
  position: absolute; top: 18px; right: 18px; width: 40px; height: 40px;
  border-radius: 50%; border: 1px solid var(--border-strong); background: var(--card);
  color: var(--ink); font-size: 20px; line-height: 1; cursor: pointer;
}
.overlay__panel h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(30px, 5vw, 44px); color: var(--ink); margin-bottom: 26px; }
.overlay__panel h3 { font-family: var(--font-serif); font-weight: 600; font-size: 22px; color: var(--ink); margin: 22px 0 8px; }
.overlay__panel p { font-size: 15px; line-height: 1.75; color: var(--text); }
.overlay__panel ul { font-size: 15px; line-height: 1.75; color: var(--text); padding-left: 20px; display: flex; flex-direction: column; gap: 4px; margin-top: 10px; }
.overlay__intro { font-size: 16.5px; line-height: 1.7; color: var(--ink); margin-bottom: 8px; }
.overlay__source { font-size: 13px; line-height: 1.7; color: var(--muted); margin-top: 24px; }
