/* eisenfuehr-speiser.html — page-specific styles. See common.css for shared primitives. */
h1,
h2,
h3 {
  line-height: 1.2;
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: -0.01em;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.6em;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4em;
}
p {
  color: var(--ink);
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
section {
  padding: 72px 0;
}

/* Top bar */
.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 30px;
  width: auto;
  display: block;
}
.topbar .cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  padding: 9px 18px;
  border-radius: 999px;
  text-decoration: none;
}

/* Hero */
.hero {
  background:
    radial-gradient(
      1200px 500px at 80% -10%,
      rgba(0, 190, 160, 0.14),
      transparent 60%
    ),
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
  padding: 84px 0 64px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  margin-bottom: 0.5em;
}
.hero h1 .hl {
  color: var(--accent);
}
.client-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.ph-logo {
  width: 150px;
  height: 56px;
  border: 1.5px dashed #b9cbd8;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #8aa0b2;
  font-size: 0.72rem;
  text-align: center;
  background: #fff;
}
.client-row small {
  color: var(--muted);
  font-size: 0.9rem;
}
.client-row strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1rem;
}

/* Facts card */
.facts {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.facts h4 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.facts dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.facts .item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.facts .ico {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.facts dt {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.facts dd {
  font-weight: 600;
  color: var(--ink);
}

/* Metrics */
.metrics {
  background: var(--primary-dark);
  color: #fff;
}
.metrics .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.metric .num {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.metric .num span {
  color: var(--accent);
}
.metric .lbl {
  margin-top: 8px;
  font-size: 0.92rem;
  color: #b7c7d4;
}

/* Story blocks */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.bg-soft {
  background: var(--bg-soft);
}
ul.check {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 12px;
}
ul.check li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
}
ul.check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--accent-soft);
}
ul.check li::after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 2px;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.85rem;
}

/* Image placeholder */
.ph-img {
  border: 1.5px dashed #b9cbd8;
  border-radius: var(--radius);
  background: repeating-linear-gradient(
    45deg,
    #f5f9fc,
    #f5f9fc 14px,
    #eef4f8 14px,
    #eef4f8 28px
  );
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #7c93a5;
  text-align: center;
  padding: 20px;
}
.ph-img .cam {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  font-size: 1.4rem;
}
.split-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.ph-img b {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.95rem;
}
.ph-img span {
  font-size: 0.82rem;
  max-width: 340px;
}

/* Feature cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  flex: 1 1 300px;
  max-width: 336px;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card .ci {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Highlight (booking) */
.highlight {
  background: linear-gradient(135deg, var(--primary) 0%, #007f6c 100%);
  color: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow);
}
.highlight .eyebrow {
  color: #9ee7f0;
}
.highlight h2 {
  color: #fff;
}
.highlight p {
  color: #dceaf1;
}
.hl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hl-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.hl-cols {
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
  margin-top: 28px;
}
.hl-list li {
  position: relative;
  padding-left: 30px;
  color: #eaf4f8;
}
.hl-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #9ee7f0;
  font-weight: 800;
}
.hl-ph {
  border: 1.5px dashed rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  color: #cde7ed;
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
}
.hl-ph .cam {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

/* Quote */
.quote {
  background: var(--accent-soft);
  border-radius: 24px;
  padding: 52px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.quote blockquote {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.45;
}
.quote .mark {
  font-size: 3rem;
  color: var(--accent);
  line-height: 0;
  display: block;
  margin-bottom: 10px;
}
.quote .by {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.quote .av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  background: var(--primary);
}
.quote .by div {
  text-align: left;
}
.quote .by strong {
  color: var(--primary-dark);
}
.quote .by small {
  color: var(--muted);
}

/* Zwei Zitate nebeneinander */
.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.quote-card {
  margin: 0;
  background: var(--accent-soft);
  border-radius: 22px;
  padding: 38px;
  display: flex;
  flex-direction: column;
}
.quote-card .mark {
  font-size: 3rem;
  color: var(--accent);
  line-height: 0;
  display: block;
  margin-bottom: 20px;
}
.quote-card blockquote {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.5;
  flex: 1;
}
.quote-card .by {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.quote-card .av {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  background: var(--primary);
}
.quote-card .by strong {
  color: var(--primary-dark);
}
.quote-card .by small {
  color: var(--muted);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.gallery img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery figcaption {
  padding: 13px 18px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}
.gallery figure.missing::before {
  content: "📷 Screenshot hier ablegen";
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c93a5;
  font-weight: 600;
  background: repeating-linear-gradient(
    45deg,
    #f5f9fc,
    #f5f9fc 14px,
    #eef4f8 14px,
    #eef4f8 28px
  );
}

/* CTA */
.cta-band {
  background: var(--primary-dark);
  color: #fff;
  text-align: center;
}
.cta-band h2 {
  color: #fff;
}
.cta-band p {
  color: #b7c7d4;
  max-width: 600px;
  margin: 0 auto 28px;
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 999px;
  transition: background 0.2s;
}
.btn:hover {
  background: #00876e;
}
.btn.ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  margin-left: 12px;
}

footer {
  background: #1e282d;
  color: #9baab0;
  padding: 32px 0;
  font-size: 0.85rem;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.note {
  background: #fff7e6;
  border: 1px solid #f2d98a;
  color: #7a5b12;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.82rem;
  margin-top: 18px;
}

/* Image bands (echte Fotos) */
.band {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.band img {
  width: 100%;
  height: clamp(300px, 44vw, 540px);
  object-fit: cover;
  display: block;
}
.band figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 24px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(
    0deg,
    rgba(7, 30, 46, 0.82),
    rgba(7, 30, 46, 0.15) 70%,
    transparent
  );
}
.band figcaption span {
  display: block;
  font-weight: 400;
  font-size: 0.82rem;
  color: #cfe0ea;
  margin-top: 2px;
}
.band.missing {
  min-height: 340px;
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(
    45deg,
    #f5f9fc,
    #f5f9fc 14px,
    #eef4f8 14px,
    #eef4f8 28px
  );
}
.band.missing figcaption {
  position: static;
  background: none;
  color: #7c93a5;
  text-align: center;
  padding: 0;
}
.band.missing figcaption b {
  display: block;
  color: var(--primary-dark);
}

/* Kundenlogo & Über-den-Kunden */
.client-logo {
  height: 50px;
  width: auto;
  display: block;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.tags span {
  background: var(--accent-soft);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 999px;
}
.awards {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px;
}
.awards h4 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.awards ul {
  list-style: none;
  display: grid;
  gap: 13px;
}
.awards li {
  position: relative;
  padding-left: 26px;
  font-size: 0.94rem;
  color: var(--ink);
}
.awards li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

/* Über-den-Kunden – abgesetzter Kontext-Block */
.about-client {
  background: #eff9f7;
  border-top: 1px solid #cdebe4;
  border-bottom: 1px solid #cdebe4;
}
.context-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: #fff;
  border: 1px solid #cdebe4;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 26px;
}

/* Thematisches Bildpaar */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.duo figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.duo img {
  width: 100%;
  height: clamp(220px, 26vw, 320px);
  object-fit: cover;
  display: block;
}
.duo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(0deg, rgba(7, 30, 46, 0.82), transparent);
}
.duo figure.missing {
  min-height: 240px;
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(
    45deg,
    #f5f9fc,
    #f5f9fc 14px,
    #eef4f8 14px,
    #eef4f8 28px
  );
}
.duo figure.missing figcaption {
  position: static;
  background: none;
  color: #7c93a5;
  text-align: center;
  padding: 0;
}

/* Buchungs-Screenshot im Highlight */
.hl-shot {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}
.hl-shot img {
  width: 100%;
  height: auto;
  display: block;
}
.hl-shot figcaption {
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #cde7ed;
}
.hl-shot.missing {
  min-height: 260px;
  display: grid;
  place-items: center;
  border-style: dashed;
}
.hl-shot.missing figcaption {
  color: #cde7ed;
  text-align: center;
}

@media (max-width: 860px) {
  .hero-grid,
  .split,
  .hl-grid,
  .hl-cols,
  .quotes,
  .metrics .wrap {
    grid-template-columns: 1fr;
  }
  .cards,
  .gallery {
    grid-template-columns: 1fr;
  }
  .metrics .wrap {
    grid-template-columns: 1fr 1fr;
  }
  section {
    padding: 52px 0;
  }
  .highlight,
  .quote {
    padding: 32px;
  }
}
