@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/playfair-display-700.woff2") format("woff2");
}

:root {
  --color-bg: #FAF9F5;
  --color-bg-alt: #F1EDE4;
  --color-text: #201F1B;
  --color-text-muted: #5B5648;
  --color-gold: #8A6A22;
  --color-gold-dark: #6C5219;
  --color-border: #E2DECF;
  --radius: 10px;
  --max-width: 1120px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 {
  line-height: 1.2;
  margin: 0 0 0.75rem;
  font-weight: 700;
  font-family: var(--font-serif);
}

h1 { font-size: 2.35rem; }
h2 { font-size: 1.85rem; }

p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

a {
  color: var(--color-gold);
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  background: var(--color-bg);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text);
}

.site-nav {
  display: flex;
  gap: 1.75rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

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

.site-nav a.active {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
}

/* Buttons & links */
.btn {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-gold);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-gold-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-text);
  color: var(--color-text);
}

.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.link-more {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--color-gold);
  font-weight: 600;
  text-decoration: none;
}

.link-more:hover {
  color: var(--color-gold-dark);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

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

.page-header {
  padding: 3.5rem 0 1rem;
}

.legal-content .container {
  max-width: 760px;
}

.legal-content h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--color-text);
}

/* Hero / Vorstellung */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(220px, 380px) 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1rem;
}

/* Placeholder boxen (Foto, Galerie) */
.placeholder-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  text-align: center;
  padding: 1rem;
}

.placeholder-box svg {
  width: 32px;
  height: 32px;
  color: var(--color-gold);
  opacity: 0.7;
}

.placeholder-box span {
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-photo { aspect-ratio: 4 / 5; }
.page-photo { aspect-ratio: 4 / 3; }
.gallery-item { aspect-ratio: 1 / 1; }

/* Card grid (Leistungen teaser) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  padding: 1.5rem;
  border-top: 3px solid var(--color-gold);
  border-radius: var(--radius);
  background: var(--color-bg);
  box-shadow: 0 1px 3px rgba(32, 31, 27, 0.06);
}

.card h3 {
  font-size: 1.1rem;
}

/* Gallery teaser + full gallery */
.gallery-teaser-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-teaser-grid {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-card {
  margin: 0;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-gold);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.google-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.review-card p:not(.review-stars) {
  color: var(--color-text);
}

.review-card cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Über uns: two-col layout */
.two-col {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 3rem;
  align-items: start;
}

/* Kontakt */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.contact-item:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.contact-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-gold);
}

/* Service (detailliert) */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.service-item {
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--color-gold);
  background: var(--color-bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Footer */
.site-footer {
  padding: 3rem 0 2.5rem;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  max-width: 170px;
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-text);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.social-link:hover {
  background: var(--color-gold);
  color: #fff;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.8rem;
}

.footer-legal a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--color-gold);
}

/* Mobile */
@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    aspect-ratio: 16 / 10;
  }

  .gallery-teaser-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-text { font-size: 1.1rem; }

  h1 { font-size: 1.85rem; }
}
