/* ============================================================
   PREISE PAGE  –  assets/css/preise.css
   ============================================================ */

/* PAGE HERO */
.preise-hero {
  padding: 148px 72px 72px;
  background: var(--soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.preise-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(185,154,130,.13) 0%, transparent 70%);
  pointer-events: none;
}

.preise-hero .section-eyebrow {
  margin-bottom: 12px;
}

.preise-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
}

.preise-hero p.lead {
  max-width: 560px;
  margin: 22px auto 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
}

/* STICKY CATEGORY NAV */
.preise-nav-wrap {
  position: sticky;
  top: 96px;
  z-index: 900;
  background: rgba(251,247,242,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.preise-nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.preise-nav::-webkit-scrollbar { display: none; }

.preise-nav a {
  display: inline-block;
  padding: 16px 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

.preise-nav a:hover,
.preise-nav a.active {
  color: var(--taupe-dark);
  border-bottom-color: var(--taupe);
}

/* MAIN LAYOUT */
.preise-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px 100px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

/* CATEGORY BLOCK */
.price-category {
  scroll-margin-top: 200px;
}

.price-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.price-category-header .cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.price-category-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

/* SERVICE GROUP */
.price-group {
  margin-bottom: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}

.price-group-title {
  padding: 12px 22px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--taupe-dark);
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

/* PRICE ROW */
.price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row:hover {
  background: var(--soft);
}

.price-row-info {
  flex: 1;
}

.price-row-info h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}

.price-row-info .duration {
  font-size: 11px;
  color: var(--taupe);
  font-weight: 500;
}

.price-row .price-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  min-width: 56px;
  text-align: right;
}

.price-row .price-tag span {
  font-size: 13px;
  font-weight: 600;
  color: var(--taupe);
}

/* NOTE BADGE */
.price-row .note-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--taupe-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}

/* STANDALONE ROW */
.price-standalone {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  margin-bottom: 8px;
  overflow: hidden;
}

.price-standalone .price-row {
  border-bottom: none;
}

/* CTA BANNER */
.preise-cta {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 52px 48px;
  text-align: center;
}

.preise-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.preise-cta p {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.7;
}

.preise-cta .cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 768px) {


  .preise-nav-wrap {
    top: 60px;
  }

  .price-category {
    scroll-margin-top: 140px;
  }

  .preise-hero {
    padding: 100px 20px 48px;
  }

  .preise-main {
    padding: 40px 14px 64px;
    gap: 52px;
  }

  .price-category-header {
    gap: 12px;
  }

  .price-category-header .cat-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .price-category-header h2 {
    font-size: 22px;
  }

  .price-row {
    padding: 14px 16px;
    gap: 8px;
  }

  .price-row-info h3 {
    font-size: 13px;
  }

  .price-row .price-tag {
    font-size: 19px;
    min-width: 48px;
  }

  .price-row .note-badge {
    display: none; /* hide on mobile to save space */
  }

  .preise-nav {
    padding: 0 12px;
  }

  .preise-nav a {
    padding: 13px 12px;
    font-size: 10px;
    letter-spacing: .8px;
  }

  .preise-cta {
    padding: 32px 18px;
  }

  .preise-cta h2 {
    font-size: 24px;
  }

  .preise-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* match header height changes from style.css */
@media (max-width: 980px) {
  .preise-nav-wrap {
    top: 120px;
  }
  .price-category {
    scroll-margin-top: 180px;
  }
}

@media (max-width: 420px) {
  .preise-nav-wrap {
    top: 122px;
  }
}
