/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: #4A2810;
  background: #fff;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --brown:        #4A2810;
  --brown-mid:    #7B4A2D;
  --brown-light:  #B07844;
  --brown-hover:  #5C3520;
  --cream:        #F5EDD9;
  --cream-light:  #FBF7F0;
  --cream-dark:   #E8D5B5;
}

.font-heading { font-family: 'Playfair Display', serif; }
.font-body    { font-family: 'Lato', sans-serif; }

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.5s ease, border-color 0.5s ease;
}
#navbar.scrolled {
  background: #fff;
  border-bottom: 1px solid var(--cream-dark);
}
.navbar-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
}
.nav-logo img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
}
.nav-logo-title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 20px; line-height: 1.2; color: #fff; transition: color 0.3s;
}
.nav-logo-sub {
  font-family: 'Lato', sans-serif; font-size: 11px;
  color: var(--cream); transition: color 0.3s;
}
#navbar.scrolled .nav-logo-title { color: var(--brown); }
#navbar.scrolled .nav-logo-sub   { color: var(--brown-light); }

.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em; color: #fff; transition: color 0.3s; cursor: pointer;
}
.nav-links a.active {
  background: #4a2810;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 20px;
  transition: background 0.3s;
}
.nav-links a:hover { color: var(--brown-light); }
#navbar.scrolled .nav-links a { color: var(--brown); }
.nav-cta {
  font-family: 'Lato', sans-serif; font-size: 14px; white-space: nowrap;
  background: var(--brown); color: #fff !important;
  padding: 8px 20px; border-radius: 999px; transition: background 0.3s;
}
.nav-cta:hover { background: var(--brown-hover) !important; color: #fff !important; }

.nav-hamburger {
  display: none; width: 32px; height: 32px;
  align-items: center; justify-content: center;
  color: #fff; font-size: 22px; cursor: pointer;
}
#navbar.scrolled .nav-hamburger { color: var(--brown); }

#mobile-menu {
  display: none; background: #fff;
  border-top: 1px solid var(--cream-dark);
  padding: 16px 24px; flex-direction: column; gap: 16px;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-family: 'Lato', sans-serif; font-size: 14px;
  color: var(--brown); cursor: pointer; transition: color 0.2s;
}
#mobile-menu a:hover { color: var(--brown-light); }
#mobile-menu .nav-cta {
  text-align: center; background: var(--brown);
  color: #fff !important; padding: 10px 20px;
  border-radius: 999px; display: block;
}

/* ============================================================
   HERO
============================================================ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.60), rgba(0,0,0,0.40), rgba(0,0,0,0.65));
}
.hero-content {
  position: relative; z-index: 10; text-align: center; width: 100%; padding: 0 24px;
  opacity: 0; transform: translateY(32px); transition: opacity 1s ease, transform 1s ease;
}
.hero-content.visible { opacity: 1; transform: translateY(0); }
.hero-eyebrow {
  font-family: 'Lato', sans-serif; color: var(--cream);
  font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 16px;
}
.hero-title {
  font-family: 'Playfair Display', serif; font-weight: 800; color: #fff;
  font-size: clamp(52px, 8vw, 96px); line-height: 1.1; margin-bottom: 12px;
}
.hero-subtitle {
  font-family: 'Playfair Display', serif;
  color: var(--cream-dark); font-size: clamp(18px, 2.5vw, 26px); margin-bottom: 32px;
}
.hero-divider {
  width: 80px; height: 1px; background: var(--brown-light); margin: 0 auto 32px;
}
.hero-desc {
  font-family: 'Lato', sans-serif; color: rgba(255,255,255,0.85);
  font-size: clamp(15px, 1.5vw, 18px);
  margin: 0 auto 40px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  font-family: 'Lato', sans-serif; font-size: 14px; white-space: nowrap;
  background: var(--brown); color: #fff; padding: 12px 32px; border-radius: 999px;
  letter-spacing: 0.05em; transition: background 0.3s; cursor: pointer;
  border: none; display: inline-block;
}
.btn-primary:hover { background: var(--brown-hover); }
.btn-outline {
  font-family: 'Lato', sans-serif; font-size: 14px; white-space: nowrap;
  border: 1px solid #fff; color: #fff; padding: 12px 32px; border-radius: 999px;
  letter-spacing: 0.05em; transition: background 0.3s; cursor: pointer;
  background: transparent; display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.hero-scroll {
  margin-top: 64px; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.7;
}
.hero-scroll span {
  font-family: 'Lato', sans-serif; color: #fff;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px; background: rgba(255,255,255,0.5);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%       { transform: translateY(8px); opacity: 0.3; }
}

/* ============================================================
   SECTION SHARED
============================================================ */
.section-inner { max-width: 1152px; margin: 0 auto; padding: 0 24px; }
.section-header {
  text-align: center; margin-bottom: 64px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.section-header.visible { opacity: 1; transform: translateY(0); }
.section-eyebrow {
  font-family: 'Lato', sans-serif; color: var(--brown-light);
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif; font-weight: 700; color: var(--brown);
  font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px;
}
.section-divider { width: 64px; height: 1px; background: var(--brown-light); margin: 0 auto 20px; }
.section-desc {
  font-family: 'Lato', sans-serif; color: var(--brown-mid);
  font-size: 15px;  margin: 0 auto; line-height: 1.8;
}
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   PRODUCT GALLERY
============================================================ */
#galerie { padding: 96px 0; background: var(--cream-light); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  position: relative; background: #fff; border-radius: 8px; overflow: hidden;
  cursor: pointer; transition: transform 0.3s ease;
}
.product-card:hover { transform: translateY(-4px); }
.product-card-img { width: 100%; height: 256px; overflow: hidden; }
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--brown); color: #fff;
  font-family: 'Lato', sans-serif; font-size: 12px;
  padding: 4px 12px; border-radius: 999px;
}
.product-card-body { padding: 16px; }
.product-card-body h3 {
  font-family: 'Playfair Display', serif; font-weight: 600;
  color: var(--brown); font-size: 18px; margin-bottom: 4px;
}
.product-card-body p { font-family: 'Lato', sans-serif; color: var(--brown-mid); font-size: 13px; }

/* ============================================================
   PRICING
============================================================ */
#preise { padding: 96px 0; background: var(--cream); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pricing-card {
  position: relative; display: flex; flex-direction: column;
  border-radius: 8px; padding: 28px; background: #fff; border: 1px solid var(--cream-dark);
}
.pricing-card.highlighted { background: var(--brown); border-color: var(--brown); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brown-light); color: #fff;
  font-family: 'Lato', sans-serif; font-size: 12px;
  padding: 4px 16px; border-radius: 999px; white-space: nowrap;
}
.pricing-icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--cream); margin-bottom: 20px;
  font-size: 20px; color: var(--brown);
}
.pricing-card.highlighted .pricing-icon { background: rgba(255,255,255,0.15); color: #fff; }
.pricing-card h3 {
  font-family: 'Playfair Display', serif; font-weight: 600;
  font-size: 20px; color: var(--brown); margin-bottom: 4px;
}
.pricing-card.highlighted h3 { color: #fff; }
.pricing-sub { font-family: 'Lato', sans-serif; font-size: 13px; color: var(--brown-mid); margin-bottom: 16px; }
.pricing-card.highlighted .pricing-sub { color: rgba(255,255,255,0.7); }
.pricing-price {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 32px; color: var(--brown); margin-bottom: 24px;
}
.pricing-card.highlighted .pricing-price { color: #fff; }
.pricing-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 12px; margin-bottom: 32px; flex: 1;
}
.pricing-features li { display: flex; align-items: flex-start; gap: 12px; }
.pricing-features li i { color: var(--brown-light); font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.pricing-card.highlighted .pricing-features li i { color: var(--cream); }
.pricing-features li span {
  font-family: 'Lato', sans-serif; font-size: 13px; color: var(--brown-mid); line-height: 1.5;
}
.pricing-card.highlighted .pricing-features li span { color: rgba(255,255,255,0.85); }
.pricing-btn {
  width: 100%; padding: 12px; border-radius: 999px;
  font-family: 'Lato', sans-serif; font-size: 14px; white-space: nowrap;
  background: var(--brown); color: #fff; transition: background 0.3s; cursor: pointer; border: none;
}
.pricing-btn:hover { background: var(--brown-hover); }
.pricing-card.highlighted .pricing-btn { background: #fff; color: var(--brown); }
.pricing-card.highlighted .pricing-btn:hover { background: var(--cream); }
.pricing-note {
  text-align: center; font-family: 'Lato', sans-serif;
  color: var(--brown-mid); font-size: 13px; margin-top: 32px;
}

/* ============================================================
   REVIEWS
============================================================ */
#bewertungen { padding: 96px 0; background: var(--cream-light); }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.review-card {
  background: #fff; border-radius: 8px; padding: 28px;
  display: flex; flex-direction: column; gap: 20px; border: 1px solid var(--cream-dark);
}
.review-author { display: flex; align-items: flex-start; gap: 16px; }
.review-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.review-name { font-family: 'Playfair Display', serif; font-weight: 600; color: var(--brown); font-size: 15px; margin-bottom: 2px; }
.review-meta { font-family: 'Lato', sans-serif; color: var(--brown-mid); font-size: 12px; }
.stars { display: flex; gap: 2px; }
.stars i { color: #f59e0b; font-size: 14px; }
.review-quote i { color: var(--cream-dark); font-size: 28px; }
.review-text {
  font-family: 'Lato', sans-serif; color: var(--brown-mid);
  font-size: 13px; line-height: 1.8; margin-top: -12px;
}
.reviews-rating-row {
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px;
}
.reviews-score { font-family: 'Playfair Display', serif; font-weight: 600; color: var(--brown); font-size: 16px; }
.reviews-count { font-family: 'Lato', sans-serif; color: var(--brown-mid); font-size: 13px; }

/* ============================================================
   CONTACT
============================================================ */
#kontakt { padding: 96px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 48px; align-items: start; }
.contact-info h3 {
  font-family: 'Playfair Display', serif; font-weight: 600; color: var(--brown); font-size: 24px; margin-bottom: 24px;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon {
  width: 40px; height: 40px; background: var(--brown); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; font-size: 16px;
}
.contact-item-label { font-family: 'Lato', sans-serif; font-weight: 700; color: var(--brown); font-size: 13px; margin-bottom: 2px; }
.contact-item-value { font-family: 'Lato', sans-serif; color: var(--brown-mid); font-size: 13px; line-height: 1.6; }
.contact-item-value a { color: var(--brown-mid); transition: color 0.2s; }
.contact-item-value a:hover { color: var(--brown); }
.contact-map { border-radius: 8px; overflow: hidden; height: 208px; border: 1px solid var(--cream-dark); }
.contact-map iframe { width: 100%; height: 100%; border: 0; }

.contact-form-wrap {
  background: #fff; border-radius: 8px; padding: 32px; border: 1px solid var(--cream-dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-label { font-family: 'Lato', sans-serif; font-weight: 700; color: var(--brown); font-size: 13px; }
.form-label span { color: #f87171; }
.form-input, .form-select, .form-textarea {
  width: 100%; border: 1px solid var(--cream-dark); border-radius: 6px; padding: 12px 16px;
  font-family: 'Lato', sans-serif; font-size: 13px; color: var(--brown);
  background: var(--cream-light); outline: none; transition: border-color 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(123,74,45,0.4); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--brown-mid); }
.form-select { cursor: pointer; }
.form-textarea { resize: none; }
.char-count { font-family: 'Lato', sans-serif; font-size: 11px; color: var(--brown-mid); text-align: right; margin-top: 4px; }
.form-submit {
  width: 100%; padding: 14px; border-radius: 999px; background: var(--brown); color: #fff;
  font-family: 'Lato', sans-serif; font-size: 14px; white-space: nowrap;
  cursor: pointer; border: none; transition: background 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--brown-hover); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.alert {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  border-radius: 6px; font-family: 'Lato', sans-serif; font-size: 13px; margin-bottom: 20px;
}
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; }
.alert-error   { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; }
.alert-hidden  { display: none; }

/* ============================================================
   FOOTER
============================================================ */
#footer { background: var(--cream); border-top: 1px solid var(--cream-dark); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 48px; }
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand-row img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--brown); font-size: 18px; }
.footer-brand-sub { font-family: 'Lato', sans-serif; color: var(--brown-mid); font-size: 12px; }
.footer-brand-desc { font-family: 'Lato', sans-serif; color: var(--brown-mid); font-size: 13px; line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px; background: var(--brown); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 18px; transition: background 0.3s; cursor: pointer;
}
.social-link:hover { background: var(--brown-hover); }
.footer-col-title { font-family: 'Playfair Display', serif; font-weight: 600; color: var(--brown); font-size: 15px; margin-bottom: 20px; }
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-nav-list a {
  font-family: 'Lato', sans-serif; color: var(--brown-mid); font-size: 13px;
  display: flex; align-items: center; gap: 8px; cursor: pointer; transition: color 0.2s;
}
.footer-nav-list a:hover { color: var(--brown); }
.footer-nav-list a i { color: var(--brown-light); font-size: 14px; }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-list li i { color: var(--brown-light); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-list li span,
.footer-contact-list li a {
  font-family: 'Lato', sans-serif; color: var(--brown-mid); font-size: 13px; line-height: 1.6; transition: color 0.2s;
}
.footer-contact-list li a:hover { color: var(--brown); }
.footer-bottom {
  border-top: 1px solid var(--cream-dark); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-family: 'Lato', sans-serif; color: var(--brown-mid); font-size: 12px; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .gallery-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
}

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.animate-spin { animation: spin 1s linear infinite; display: inline-block; }