@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #dfba73;        /* Gold Champagne */
  --primary-dark: #cda862;   /* Deep Champagne */
  --accent: #f2e2cf;         /* Rose Gold tint */
  --bg-light: #fdfbf7;       /* Soft warm cream */
  --bg-card: #ffffff;        /* Pure white cards */
  --text-dark: #1f1d1a;      /* Charcoal black */
  --text-muted: #6e6a64;     /* Soft slate brown */
  --border-clr: rgba(223, 186, 115, 0.2);
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 10px 30px rgba(31, 29, 26, 0.04);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* TOP BAR */
.topbar {
  background: var(--text-dark);
  color: var(--primary);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  padding: 10px 1rem;
  text-transform: uppercase;
}

/* HEADER */
.header {
  position: fixed;
  top: 38px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-clr);
  transition: var(--transition);
}
.header--scrolled {
  top: 0;
  box-shadow: var(--shadow);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* LOGO */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo__main {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  text-transform: uppercase;
}
.logo__main span {
  color: var(--primary-dark);
}
.logo__sub {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--text-muted);
  margin-top: 3px;
}

/* NAVIGATION */
.nav__list {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  opacity: 0.85;
}
.nav__link:hover {
  color: var(--primary-dark);
  opacity: 1;
}
.nav__cta {
  background: var(--text-dark);
  color: var(--bg-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  transition: var(--transition);
  border: 1px solid var(--text-dark);
}
.nav__cta:hover {
  background: transparent;
  color: var(--text-dark);
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--text-dark);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  border: 1px solid var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover {
  background: transparent;
  color: var(--text-dark);
  box-shadow: 0 8px 24px rgba(31, 29, 26, 0.08);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  border: 1px solid rgba(31, 29, 26, 0.2);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--text-dark);
  background: rgba(31, 29, 26, 0.02);
}

/* SECTION HEADERS */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

/* HERO SECTION */
.hero {
  padding: 12rem 0 6rem;
  background: radial-gradient(circle at top right, var(--accent) 0%, var(--bg-light) 60%);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__title {
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
}
.hero__title span {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--primary-dark);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  margin-top: 0.4rem;
}
.hero__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  max-width: 540px;
}
.hero__img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(31, 29, 26, 0.08);
  border: 1px solid var(--border-clr);
}
.hero__img {
  width: 100%;
  display: block;
}

/* RATING CARD */
.rating-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(223, 186, 115, 0.15);
  margin-top: 3rem;
}
.rating-card__title {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.rating-card__stars {
  color: var(--primary-dark);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.rating-card__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* FOOTER */
.footer {
  background: #1c1a17;
  color: #dfdcd8;
  padding: 5rem 0 2.5rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}
.footer-brand .logo__main {
  color: #ffffff;
}
.footer-brand p {
  color: #a6a39f;
  margin-top: 1.2rem;
  font-size: 0.88rem;
  line-height: 1.6;
}
.footer-col h3 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  color: #a6a39f;
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #a6a39f;
}
.footer-bottom p {
  margin-bottom: 0;
}

/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader__ring {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(223, 186, 115, 0.15);
  border-top-color: var(--primary-dark);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}
#preloader::after {
  content: "Wird geladen...";
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--primary-dark);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* COOKIES BANNER */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 600px;
  background: var(--bg-card);
  color: var(--text-dark);
  box-shadow: 0 20px 50px rgba(31, 29, 26, 0.12);
  border-radius: 8px;
  border: 1px solid var(--border-clr);
  padding: 1.8rem;
  z-index: 99999;
  display: none;
  animation: slideUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cookie-banner h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.cookie-banner p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.cookie-banner a {
  color: var(--primary-dark);
  text-decoration: underline;
}
.cookie-btn-wrap {
  display: flex;
  gap: 1rem;
}
.cookie-btn {
  flex: 1;
  padding: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-btn--accept {
  background: var(--text-dark);
  color: #ffffff;
  border: 1px solid var(--text-dark);
}
.cookie-btn--accept:hover {
  background: transparent;
  color: var(--text-dark);
}
.cookie-btn--decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(31, 29, 26, 0.15);
}
.cookie-btn--decline:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* MOBILE NAV TOGGLE */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  outline: none;
}
.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  position: relative;
  transition: var(--transition);
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}
.hamburger::before {
  top: -8px;
}
.hamburger::after {
  top: 8px;
}

/* Toggle Active State */
.nav-toggle.active .hamburger {
  background: transparent;
}
.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero__btns {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

/* RESPONSIVE */
@media (max-width: 990px) {
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .topbar {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    padding: 8px 12px;
    line-height: 1.4;
  }
  .header {
    top: 0;
    position: sticky;
  }
  .nav-toggle {
    display: block;
  }
  .nav__list {
    display: flex;
    position: fixed;
    top: 0;
    right: -320px;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(15px);
    border-left: 1px solid rgba(223, 186, 115, 0.15);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding: 3rem;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s;
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(31, 29, 26, 0.05);
    visibility: hidden;
  }
  .nav__list.active {
    right: 0;
    visibility: visible;
  }
  .nav__cta {
    width: 100%;
    text-align: center;
  }
  .hero {
    padding: 8rem 0 4rem;
  }
  .hero__title {
    font-size: 2rem;
    line-height: 1.25;
  }
  .hero__title span {
    font-size: 1.1rem;
    margin-top: 0.5rem;
  }
  .hero__desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .rating-card {
    padding: 1.8rem;
    margin-top: 2rem;
  }
  .rating-card__title {
    font-size: 1.2rem;
  }
  .rating-card__desc {
    font-size: 0.88rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero__btns {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }
  .hero__btns .btn-primary,
  .hero__btns .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.88rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
