/* ===== zapfanlage-mieten page ===== */

/* ── hero ── */
.zf-hero {
  background: #1A1917;
  color: var(--paper);
  overflow: hidden;
  position: relative;
}
.zf-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 110% 50%, rgba(200,64,42,.18), transparent 65%),
    radial-gradient(ellipse 40% 60% at -10% 80%, rgba(212,160,58,.12), transparent 60%);
  pointer-events: none;
}
.zf-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  padding-block: clamp(64px, 8vw, 112px);
  position: relative;
  z-index: 1;
}
.zf-hero .eyebrow { color: var(--amber); }
.zf-hero h1 {
  color: #fff;
  margin: 16px 0 0;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.zf-hero .sub {
  margin: 18px 0 0;
  font-size: clamp(15px, 1.3vw, 17px);
  color: rgba(244,239,230,.72);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-items: center;
}
.zf-hero .sub-dot { color: rgba(244,239,230,.28); }
.zf-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; align-items: center; }
.zf-hero-img {
  border-radius: var(--radius-lg);
  position: relative;
}
.zf-hero-img .ph { aspect-ratio: 4/5; }
.zf-foam-badge {
  position: absolute;
  bottom: 24px; left: -22px;
  background: var(--amber);
  color: #fff;
  padding: 13px 20px 13px 18px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,.32);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.35;
}
.zf-foam-badge .badge-num { font-family: var(--display); font-size: 26px; display: block; line-height: 1; }

@media (max-width: 860px) {
  .zf-hero-inner { grid-template-columns: 1fr; }
  .zf-hero-img { display: none; }
}

/* ── pricing cards ── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  background: #1A1917;
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(244,239,230,.1);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.price-card:hover { transform: translateY(-3px); box-shadow: 0 22px 48px -18px rgba(0,0,0,.55); }
.price-card.featured {
  border-color: var(--amber);
  background: color-mix(in srgb, #1A1917 85%, var(--amber));
}
.price-card.featured::after {
  content: "Empfohlen";
  position: absolute; top: 18px; right: 18px;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--amber); color: #fff;
  padding: 3px 10px; border-radius: 999px;
}
.price-label { font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(244,239,230,.5); }
.price-amount { font-family: var(--display); font-size: clamp(34px, 4vw, 52px); color: #D4A03A; line-height: 1; }
.price-card.featured .price-amount { color: #E8C060; }
.price-period { font-size: 14px; color: rgba(244,239,230,.55); margin-left: 4px; }
.price-desc { font-size: 15px; color: rgba(244,239,230,.82); margin: 6px 0 0; line-height: 1.45; }
.price-note { font-size: 13px; color: rgba(244,239,230,.45); margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(244,239,230,.1); }

@media (max-width: 640px) {
  .price-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .price-card.featured::after { top: 14px; right: 14px; }
}

/* ── for whom — icon row ── */
.whom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.whom-card {
  border: 1px solid var(--ink-15);
  border-radius: var(--radius-lg);
  background: var(--paper-card);
  padding: 28px 26px 26px;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.whom-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -20px rgba(28,26,23,.22); }
.whom-icon {
  width: 52px; height: 52px;
  background: var(--amber-tint);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 18px;
  font-size: 24px;
}
.whom-card h3 { font-size: 21px; margin: 0 0 10px; }
.whom-card p { font-size: 14.5px; color: var(--ink-70); margin: 0; line-height: 1.55; }

@media (max-width: 640px) {
  .whom-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* ── steps ── */
.steps-bg { background: var(--paper-deep); border-block: 1px solid var(--ink-08); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 48px;
  margin-top: clamp(36px, 4vw, 52px);
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 21px; left: calc(33.33% + 10px); right: calc(33.33% + 10px);
  height: 1.5px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber) 100%);
  opacity: .25;
  pointer-events: none;
}
.step-zf { display: flex; flex-direction: column; gap: 0; }
.step-zf-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  color: var(--amber-deep);
  font-family: var(--display);
  font-size: 18px;
  display: grid; place-items: center;
  margin-bottom: 20px;
  background: var(--paper-card);
  flex-shrink: 0;
}
.step-zf h3 { font-size: clamp(19px, 1.8vw, 23px); margin: 0 0 10px; }
.step-zf p { font-size: 14.5px; color: var(--ink-70); margin: 0; line-height: 1.55; }
.step-zf .step-note {
  margin-top: 12px; font-size: 13px; color: var(--ink-55);
  padding: 8px 12px; background: var(--paper-card);
  border: 1px solid var(--ink-08); border-radius: var(--radius);
}
@media (max-width: 640px) {
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .steps-grid::before { display: none; }
}

/* ── bier table / cards ── */
.bier-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.bier-table thead th {
  text-align: left;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-40);
  padding: 0 18px 14px;
  border-bottom: 1.5px solid var(--ink-15);
}
.bier-table thead th:first-child { padding-left: 0; }
.bier-table tbody tr {
  border-bottom: 1px solid var(--ink-08);
  transition: background .15s;
}
.bier-table tbody tr:last-child { border-bottom: 0; }
.bier-table tbody tr:hover { background: var(--paper-card); }
.bier-table td {
  padding: 16px 18px;
  vertical-align: middle;
}
.bier-table td:first-child { padding-left: 0; }
.bier-name { font-weight: 600; color: var(--ink); font-size: 16px; line-height: 1.3; }
.bier-origin { font-size: 12.5px; color: var(--ink-55); margin-top: 2px; }
.bier-stw {
  font-family: var(--display);
  font-size: 18px;
  color: var(--amber-deep);
  white-space: nowrap;
}
.bier-keg {
  font-size: 14px; color: var(--ink-55); white-space: nowrap;
}
.bier-char { font-size: 14px; color: var(--ink-70); }
.bier-glasses { font-size: 13px; color: var(--ink-40); }

@media (max-width: 680px) {
  .bier-table { display: none; }
  .bier-mobile-cards { display: flex; flex-direction: column; gap: 12px; }
}
@media (min-width: 681px) {
  .bier-mobile-cards { display: none; }
}
.bier-mc {
  background: var(--paper-card);
  border: 1px solid var(--ink-15);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bier-mc-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.bier-mc-name { font-weight: 600; font-size: 16px; }
.bier-mc-stw { font-family: var(--display); font-size: 20px; color: var(--amber-deep); }
.bier-mc-meta { font-size: 13px; color: var(--ink-55); }
.bier-mc-char { font-size: 14px; color: var(--ink-70); }

/* ── FAQ accordion ── */
.faq-list { display: flex; flex-direction: column; max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--ink-15); }
.faq-item:first-child { border-top: 1px solid var(--ink-15); }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 0;
  background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--sans); font-size: 17px; font-weight: 600; color: var(--ink);
  transition: color .2s;
}
.faq-trigger:hover { color: var(--burgundy); }
.faq-trigger[aria-expanded="true"] { color: #C8402A; }
.faq-chev {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--ink-40);
  transition: transform .28s var(--ease), color .2s;
}
.faq-trigger[aria-expanded="true"] .faq-chev {
  transform: rotate(180deg);
  color: #C8402A;
}
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s var(--ease);
}
.faq-body-inner {
  padding: 0 0 22px;
  font-size: 15.5px;
  color: var(--ink-70);
  line-height: 1.65;
}
.faq-body-inner p { margin: 0 0 10px; }
.faq-body-inner p:last-child { margin-bottom: 0; }

/* ── CTA banner ── */
.cta-zf { background: var(--ink); color: var(--paper); }
.cta-zf-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding-block: clamp(56px, 7vw, 96px);
}
.cta-zf h2 { color: #fff; font-size: clamp(28px, 3.5vw, 48px); margin: 12px 0 4px; }
.cta-zf .cta-email {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 38px);
  color: var(--amber);
  margin: 8px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s;
}
.cta-zf .cta-email:hover { border-color: var(--amber); }
.cta-zf .cta-meta { font-size: 14.5px; color: rgba(244,239,230,.55); margin: 0; }
.cta-zf .cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; margin-top: 28px; }

/* ── section head utility ── */
.section-head { max-width: 680px; margin-bottom: clamp(36px, 4vw, 52px); }
.section-head h2 { margin: 14px 0 14px; }
.section-head p { font-size: 16.5px; color: var(--ink-70); margin: 0; }
