/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg: #0b0b0c;
  --bg-alt: #141416;
  --bg-card: #17171a;
  --line: #2a2a2d;
  --line-strong: #3c3c40;
  --text: #f2f1ec;
  --text-muted: #a8a9ac;
  --accent: #b08d57;
  --accent-soft: #8c7148;
  --accent-tint: rgba(176, 141, 87, 0.12);
  --shine: linear-gradient(120deg, #8c7148 0%, #d9bd8a 42%, #f4e4c1 50%, #d9bd8a 58%, #8c7148 100%);

  --font-display: "Oswald", sans-serif;
  --font-body: "Work Sans", sans-serif;

  --maxw: 1120px;
}

:root {
  color-scheme: dark;
}

html, body {
  background: var(--bg);
}

section {
  background: var(--bg);
}

main {
  background: var(--bg);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  overflow-wrap: break-word;
}

section[id] {
  scroll-margin-top: 76px;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  max-width: 20ch;
}

.section-intro {
  color: var(--text-muted);
  max-width: 56ch;
  font-size: 1.02rem;
  margin-top: 14px;
}

hr.rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ============================================================
   NAV
   ============================================================ */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  height: 56px;
  width: auto;
}

nav.primary-nav {
  display: flex;
  gap: 28px;
}

nav.primary-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

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

.nav-cta {
  display: none;
}

@media (min-width: 760px) {
  .nav-cta {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px 18px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .nav-cta:hover { background: var(--accent); color: #111; }
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--text);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

@media (max-width: 759px) {
  nav.primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    display: none;
  }
  nav.primary-nav.open { display: flex; }
  nav.primary-nav a {
    padding: 16px 24px;
    border-top: 1px solid var(--line);
  }
  .menu-toggle { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}

.hero-inner {
  max-width: 900px;
}

.hero-inner > div {
  min-width: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-actions .btn {
  margin-top: 0;
}

.hero h1 {
  font-size: clamp(1.4rem, 6vw, 3.4rem);
  line-height: 1.15;
  overflow-wrap: break-word;
}

.hero h1 span {
  display: block;
}

.hero h1 .accent-word {
  background: var(--shine);
  background-size: 220% 100%;
  background-position: 30% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 46ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid var(--accent);
  color: #171310;
  background: var(--shine);
  background-size: 240% 100%;
  background-position: 0% 0%;
  margin-top: 32px;
  transition: background-position 0.6s ease;
}

.btn:hover { background-position: 100% 0%; }

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

/* ============================================================
   PAKETE
   ============================================================ */
section { padding: 80px 0; }

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

.pakete-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.paket-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
}

.paket-bild {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) brightness(0.92);
}

.paket-card-body {
  padding: 24px 26px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.paket-card.featured {
  background: var(--bg-card);
  border-color: var(--accent);
  border-width: 2px;
}

.paket-card .tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: #171310;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  z-index: 1;
}

.paket-card h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.paket-card .untertitel {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 10px;
}

.paket-card .preis {
  font-family: var(--font-display);
  background: var(--shine);
  background-size: 220% 100%;
  background-position: 30% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.4rem;
  margin: 6px 0 16px;
}

.paket-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
}

/* ============================================================
   ÜBER UNS
   ============================================================ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-inner > * {
  min-width: 0;
}
@media (max-width: 800px) {
  .about-inner { grid-template-columns: 1fr; }
}
.about-inner p {
  color: var(--text-muted);
  margin-top: 18px;
}

/* ============================================================
   GALERIE
   ============================================================ */
.gallery-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 4px;
}

#social-feed-embed:not(:empty) {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.gallery-grid img,
.gallery-empty {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.gallery-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  background: var(--bg-card);
  text-align: center;
  padding: 20px;
}

/* ============================================================
   BEWERTUNGEN
   ============================================================ */
.reviews-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.review-card {
  border: 1px solid var(--line);
  padding: 26px;
  background: var(--bg-card);
}

.stars {
  color: var(--accent);
  letter-spacing: 0.12em;
  font-size: 1rem;
}

.review-card p {
  margin: 14px 0 0;
  color: var(--text-muted);
}

.review-card .who {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 0;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.3rem;
  margin-left: 20px;
}

.faq-item[open] summary::after { content: "–"; }

.faq-item p {
  color: var(--text-muted);
  padding-bottom: 22px;
  margin: 0;
  max-width: 65ch;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-inner > * {
  min-width: 0;
}
@media (max-width: 800px) {
  .contact-inner { grid-template-columns: 1fr; }
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.contact-list li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-list li:last-child { border-bottom: 1px solid var(--line); }

.contact-list .label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-list a { text-decoration: none; }
.contact-list a:hover { color: var(--accent); }

.contact-cta {
  border: 1px solid var(--line);
  padding: 32px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-cta h3 { font-size: 1.2rem; margin-bottom: 12px; }
.contact-cta p { color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: var(--bg-card);
  border-top: 1px solid var(--line-strong);
  padding: 20px;
  transform: translateY(110%);
  transition: transform 0.3s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.cookie-banner-inner p {
  color: var(--text-muted);
  font-size: 0.88rem;
  max-width: 62ch;
  margin: 0;
}

.cookie-banner-inner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-banner-actions .btn {
  margin-top: 0;
  padding: 11px 20px;
  font-size: 0.82rem;
}
