/* =============================================
   PRIVATE-LABEL.CSS – Private Label Subpage
   B+F Bakery & Food GmbH – "Premium Heritage"
   Uses CSS variables from style3.css (Navy/Gold/Cream)
   All selectors prefixed with .pl-
   ============================================= */

/* ----- Section base ----- */
.pl-section {
  padding: 6rem 0;
  position: relative;
}
.pl-section--cream { background: var(--cream); }
.pl-section--white { background: var(--warm-white); }

.pl-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.85rem;
}

.pl-title {
  /*font-family: 'Playfair Display', Georgia, serif;*/
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.pl-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.pl-lead {
  font-size: 1.1rem;
  color: var(--ink-light);
  max-width: 720px;
  line-height: 1.8;
}
.pl-lead--center {
  margin-left: auto;
  margin-right: auto;
}

/* ======================================================
   HERO
   ====================================================== */
.pl-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}
.pl-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pl-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: plKenBurns 24s ease-out infinite alternate;
}
@keyframes plKenBurns {
  from { transform: scale(1.05); }
  to   { transform: scale(1.16); }
}
.pl-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(15, 38, 64, 0.92) 0%, rgba(15, 38, 64, 0.72) 45%, rgba(27, 58, 92, 0.55) 100%);
}
.pl-hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(200, 153, 63, 0.18) 0%, transparent 55%);
}
.pl-hero .container {
  position: relative;
  z-index: 2;
}
.pl-hero-inner {
  max-width: 760px;
  padding: 5rem 0;
}
.pl-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
}
.pl-hero-kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--gold);
}
.pl-hero h1 {
  /*font-family: 'Playfair Display', Georgia, serif;*/
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.pl-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.pl-hero-lead {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 2.25rem;
}
.pl-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Gold pill button */
.pl-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  border-radius: 50rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(200, 153, 63, 0.35);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.pl-btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(200, 153, 63, 0.45);
  color: #fff;
}
.pl-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  border-radius: 50rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  transition: all 0.3s var(--ease-out);
}
.pl-btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.1);
}

.pl-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.pl-hero-scroll .pl-scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: plScroll 1.8s ease-in-out infinite;
}
@keyframes plScroll {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
  50%      { opacity: 1; transform: scaleY(1); }
}

/* ======================================================
   INTRO TEXT
   ====================================================== */
.pl-intro {
  background: var(--warm-white);
}
.pl-intro-body p {
  font-size: 1.08rem;
  color: var(--ink-light);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.pl-intro-body .pl-drop {
  font-size: 1.18rem;
  color: var(--ink);
}
.pl-intro-claim {
  /*font-family: 'Playfair Display', Georgia, serif;*/
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-style: italic;
  color: var(--primary);
  line-height: 1.4;
  margin: 2.5rem 0 0;
  padding-left: 1.5rem;
  border-left: 4px solid var(--gold);
}

.pl-usp-heading {
  /*font-family: 'DM Sans', sans-serif;*/
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2.5rem 0 1.5rem;
}

/* USP list cards */
.pl-usp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.1rem;
}
.pl-usp-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.pl-usp-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.pl-usp-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: var(--gold-dark);
  background: var(--gold-soft);
  border: 1px solid rgba(200, 153, 63, 0.3);
}
.pl-usp-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.pl-usp-text p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-light);
  line-height: 1.7;
}

/* Sticky aside card */
.pl-intro-aside {
  position: sticky;
  top: 100px;
}
.pl-intro-card {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.pl-intro-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 153, 63, 0.3), transparent 70%);
}
.pl-intro-card h3 {
  /*font-family: 'Playfair Display', serif;*/
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.pl-intro-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.pl-intro-card .pl-btn-gold {
  width: 100%;
  justify-content: center;
}

/* ======================================================
   PRODUKTKATEGORIEN GRID (Kühlmann reference)
   ====================================================== */
.pl-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.pl-cat-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.pl-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.pl-cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease-out);
}
.pl-cat-card:hover img {
  transform: scale(1.08);
}
.pl-cat-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 38, 64, 0.92) 0%, rgba(15, 38, 64, 0.45) 45%, rgba(15, 38, 64, 0.1) 100%);
  transition: background 0.4s var(--ease-out);
}
.pl-cat-card:hover .pl-cat-veil {
  background: linear-gradient(to top, rgba(15, 38, 64, 0.95) 0%, rgba(27, 58, 92, 0.7) 60%, rgba(27, 58, 92, 0.35) 100%);
}
.pl-cat-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem 1.4rem 1.5rem;
  z-index: 2;
}
.pl-cat-body h3 {
  /*font-family: 'Playfair Display', serif;*/
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.4rem;
  line-height: 1.25;
}
.pl-cat-desc {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out), opacity 0.4s var(--ease-out), margin 0.4s var(--ease-out);
}
.pl-cat-card:hover .pl-cat-desc {
  max-height: 120px;
  opacity: 1;
  margin-top: 0.35rem;
}
.pl-cat-arrow {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(200, 153, 63, 0.92);
  color: #fff;
  font-size: 1.1rem;
  transform: translateY(-6px);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
}
.pl-cat-card:hover .pl-cat-arrow {
  transform: translateY(0);
  opacity: 1;
}

/* ======================================================
   PROZESS – Von der Idee bis ins Regal
   ====================================================== */
.pl-process {
  background: var(--cream);
}
.pl-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.pl-step {
  position: relative;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 1.6rem 2rem;
  text-align: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.pl-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.pl-step-badge {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  /*font-family: 'Playfair Display', serif;*/
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  box-shadow: 0 8px 20px rgba(200, 153, 63, 0.4);
  border: 3px solid var(--warm-white);
}
.pl-step-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}
.pl-step h3 {
  /*font-family: 'DM Sans', sans-serif;*/
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.pl-step p {
  font-size: 0.94rem;
  color: var(--ink-light);
  line-height: 1.65;
  margin: 0;
}

/* ======================================================
   CTA BANNER
   ====================================================== */
.pl-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 5.5rem 0;
  text-align: center;
}
.pl-cta::before,
.pl-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 153, 63, 0.22), transparent 70%);
}
.pl-cta::before {
  width: 320px; height: 320px;
  top: -120px; left: -80px;
}
.pl-cta::after {
  width: 380px; height: 380px;
  bottom: -160px; right: -100px;
}
.pl-cta .container { position: relative; z-index: 2; }
.pl-cta-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.pl-cta h2 {
  /*font-family: 'Playfair Display', serif;*/
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.pl-cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1199.98px) {
  .pl-cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991.98px) {
  .pl-section { padding: 4.5rem 0; }
  .pl-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .pl-process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .pl-intro-aside { position: static; margin-top: 2.5rem; }
}
@media (max-width: 575.98px) {
  .pl-hero { min-height: 80vh; }
  .pl-hero-inner { padding: 3.5rem 0; }
  .pl-hero-buttons { flex-direction: column; }
  .pl-hero-buttons .pl-btn-gold,
  .pl-hero-buttons .pl-btn-outline { justify-content: center; width: 100%; }
  .pl-cat-grid { grid-template-columns: 1fr; }
  .pl-cat-card { aspect-ratio: 16 / 11; }
  .pl-cat-desc { max-height: 120px; opacity: 1; margin-top: 0.35rem; }
  .pl-process-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
