:root {
  --orange: #D4720F;
  --orange-light: #E8891A;
  --orange-deep: #A85A08;
  --cream: #FAF7F2;
  --black: #111008;
  --gray: #6B6357;
  --border: rgba(212,114,15,0.18);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
}

/* PROGRESS BAR */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange-light));
  transition: width 0.08s linear;
  border-radius: 0 2px 2px 0;
  pointer-events: none;
}

/* NAV */
nav {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(250,247,242,0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.02em;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav ul a {
  text-decoration: none;
  color: var(--gray);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav ul a:hover {
  color: var(--orange);
}

.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2rem;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--orange-deep) !important;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 80%, rgba(212,114,15,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s forwards;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--black);
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s forwards;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  right: 0;
  height: 4px;
  background: var(--orange);
  opacity: 0.3;
  border-radius: 2px;
}

.hero-sub {
  margin-top: 1.8rem;
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s forwards;
}

.hero-actions {
  margin-top: 2.8rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.7s 0.65s forwards;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 1rem 2.2rem;
  border-radius: 3rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  padding: 1rem 2.2rem;
  border-radius: 3rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid rgba(17,16,8,0.25);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.hero-visual {
  margin-top: 4rem;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.85s forwards;
}

.drink-chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--gray);
  box-shadow: 0 2px 16px rgba(212,114,15,0.08);
}

.drink-chip .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.7;
}

/* SHARED */
section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 580px;
}

hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 2rem;
}

/* ÜBER UNS */
#ueber-uns {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}

.about-card {
  background: var(--black);
  border-radius: 1.5rem;
  padding: 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.18;
}

.about-logo-big {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.about-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.about-badge {
  display: inline-block;
  margin-top: 1.5rem;
  background: rgba(212,114,15,0.2);
  color: var(--orange-light);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.6rem;
  background: rgba(212,114,15,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.value-item h4 {
  font-weight: 500;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.value-item p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

.logo-policy {
  margin-top: 2.5rem;
  background: rgba(212,114,15,0.07);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 0.75rem;
  padding: 1.2rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.logo-policy-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.logo-policy h5 {
  font-weight: 500;
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
  color: var(--orange-deep);
}

.logo-policy p {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.6;
}

.logo-policy strong {
  color: var(--orange-deep);
}

/* PAKETE */
#pakete {
  background: var(--black);
}

#pakete .section-label {
  color: var(--orange-light);
}

#pakete .section-title {
  color: #fff;
}

#pakete .section-sub {
  color: rgba(255,255,255,0.5);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.package-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,114,15,0.2);
  border-radius: 1.5rem;
  padding: 2.2rem;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
}

.package-card.featured {
  background: var(--orange);
  border-color: var(--orange);
}

.package-card.featured .pkg-price,
.package-card.featured .pkg-name,
.package-card.featured .pkg-desc,
.package-card.featured .pkg-feature {
  color: #fff !important;
}

.package-card.featured .pkg-feature::before {
  background: rgba(255,255,255,0.5) !important;
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange-deep);
  color: #fff;
  padding: 0.3rem 1.2rem;
  border-radius: 0 0 1rem 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: none;
}

.package-card.featured .popular-badge {
  display: block;
}

.pkg-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.pkg-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.pkg-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pkg-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange-light);
  margin-bottom: 0.3rem;
  line-height: 1;
}

.pkg-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}

.pkg-from {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.8rem;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.pkg-feature {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  padding-left: 1.2rem;
  position: relative;
}

.pkg-feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.pkg-logo-tag {
  margin-top: 1.2rem;
  padding: 0.6rem 0.9rem;
  background: rgba(212,114,15,0.15);
  border-radius: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
}

.package-card.featured .pkg-logo-tag {
  background: rgba(0,0,0,0.15);
  color: rgba(255,255,255,0.85);
}

.pkg-cta {
  margin-top: 1.5rem;
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.package-card:not(.featured) .pkg-cta {
  background: rgba(212,114,15,0.12);
  color: var(--orange-light);
}

.package-card:not(.featured) .pkg-cta:hover {
  background: var(--orange);
  color: #fff;
}

.package-card.featured .pkg-cta {
  background: rgba(0,0,0,0.2);
  color: #fff;
}

.package-card.featured .pkg-cta:hover {
  background: rgba(0,0,0,0.35);
}

.pkg-note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

.pkg-note a {
  color: var(--orange-light);
  text-decoration: none;
}

/* STEPS */
#so-funktionierts {
  background: #0e0c07;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.step {
  position: relative;
  padding-top: 1rem;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #d4720f;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.step h4 {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #fff;
}

.step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.step-line {
  position: absolute;
  top: 2.5rem;
  left: calc(100% + 0.5rem);
  right: calc(-100% + 0.5rem);
  height: 1px;
  background: rgba(212,114,15,0.2);
}

.step:last-child .step-line {
  display: none;
}

/* KONTAKT */
#kontakt {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  background: rgba(212,114,15,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-item h5 {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--black);
}

.form-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(212,114,15,0.06);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(212,114,15,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--gray);
}

/* IMPRESSUM */
#impressum {
  background: #f5f2ec;
  border-top: 1px solid var(--border);
}

.impressum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.impressum-block {
  margin-bottom: 2rem;
}

.impressum-block h4 {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.impressum-block p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.85;
}

.impressum-block a {
  color: var(--orange);
  text-decoration: none;
}

.impressum-block a:hover {
  text-decoration: underline;
}

.placeholder {
  background: rgba(212,114,15,0.1);
  border-radius: 3px;
  padding: 0 4px;
  color: var(--orange-deep);
  font-style: italic;
  font-size: 0.85em;
}

.impressum-notice {
  margin-top: 2.5rem;
  padding: 1.2rem 1.5rem;
  background: rgba(212,114,15,0.07);
  border-radius: 0.75rem;
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.7;
}

.impressum-notice a {
  color: var(--orange);
  text-decoration: none;
}

.impressum-notice a:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.4);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 1rem;
}

footer p {
  font-size: 0.85rem;
  line-height: 1.8;
}

footer a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}

footer a:hover {
  color: var(--orange);
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  nav ul {
    display: none;
  }

  .about-grid,
  .contact-grid,
  .impressum-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .step-line {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  section {
    padding: 4rem 1.5rem;
  }
}