/* ============================================================
   Story — Geschichte des Restaurants + Editorial-Bildstack
   ============================================================ */

.story-row {
  padding: 104px 0;
  background: var(--ink-2);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.story-row::before {
  content: ""; position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 90% 10%, rgba(196, 49, 30, .14), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 100%, rgba(212, 165, 42, .10), transparent 60%);
  z-index: 0;
}

/* Diagonaler Schnitt am Übergang von der hellen Sellers-Section
   zur dunklen Story-Section: ein 30 px hohes paper-2-farbenes Dreieck
   am oberen Rand, das von links (volle Höhe) nach rechts (null)
   tapert.

   Wir nutzen mask-image mit Inline-SVG (statt clip-path) weil SVG-
   Polygone vom Browser anti-aliased gerendert werden — die Diagonale
   ist dadurch knackscharf ohne Pixel-Treppen. */
.story-row::after {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;          /* -1 px deckt sub-pixel-Lücken */
  height: 30px;
  background: var(--paper-2);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 100 30'><polygon fill='white' points='0,0 100,0 0,30'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 100 30'><polygon fill='white' points='0,0 100,0 0,30'/></svg>");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  z-index: 5;
  pointer-events: none;
}

.story-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
}

.story h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 4.8vw, 66px);
  letter-spacing: -.018em;
  line-height: 1.0;
  margin-top: 18px;
  color: var(--paper);
}
.story h2 i,
.story h2 em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 500;
  font-family: var(--serif);
}

.story p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(246, 239, 225, .72);
  max-width: 560px;
  margin-top: 22px;
}
.story p b { color: var(--paper); font-weight: 500; }

/* Story-Art: Editorial-Bildstack mit großer Outline-Typo „2012"
   als Hintergrund-Element. Bild 1 oben (hochformat, leichter Bleed
   nach rechts), Bild 2 darunter versetzt, kleiner. */
.story-art {
  position: relative;
  display: grid;
  gap: 18px;
  align-self: stretch;
  min-height: 620px;
}

/* Riesige Outline-Großzahl „2012" als blassgoldene Stroke-Schrift
   hinter den Bildern — typografische Tiefe ohne neue Farben. */
.story-art::before {
  content: "2012";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(180px, 20vw, 300px);
  line-height: .85;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 165, 42, .2);
  z-index: 0;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* Bilder + andere Story-Art-Inhalte ÜBER der Großzahl */
.story-art > * {
  position: relative;
  z-index: 1;
}

/* Bild 1: leichter Bleed nach rechts über die Wrap-Padding hinaus */
.story-art .art-frame-1 {
  margin-right: -32px;
}
.art-frame {
  position: relative;
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.art-frame::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 30% 22%, rgba(255, 255, 255, .18), transparent 55%);
}
.art-frame::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .7) 100%);
}
/* Echte Fotos füllen die Frames; ::before-Shine und ::after-Bottom-
   Gradient liegen weiterhin als Atmosphären-Layer darüber. */
.art-frame {
  background: var(--ink-2);            /* Fallback während Bild lädt */
}
.art-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}
.art-cap {
  position: absolute;
  left: 20px; bottom: 16px; right: 20px;
  z-index: 2;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--paper);
  letter-spacing: -.005em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}
.art-cap i {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 600;
  margin-right: 8px;
}

/* Story-spezifische Responsive-Anpassungen */
@media (max-width: 1080px) {
  .story-art { grid-template-columns: 1fr 1fr; min-height: auto; }
  .art-frame { aspect-ratio: 4/5; }
  .story-art::before { font-size: clamp(100px, 16vw, 180px); }
  .story-art .art-frame-1 { margin-right: 0; }
}
@media (max-width: 680px) {
  /* Story-Bilder bleiben nebeneinander (2-Spalten) — wie auf Desktop,
     nur kompakter. Das Stack-Verhalten haben wir bewusst entfernt. */
  .story-art {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .art-frame { aspect-ratio: 3/4; }
  .story-art::before { display: none; }
  .art-cap { font-size: 14px; left: 12px; right: 12px; bottom: 10px; }
}

/* Legacy: Aktion-Block (aktuell ungenutzt, ausgeblendet) */
.aktion {
  background: var(--ink);
  color: var(--paper);
  border-radius: 6px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(246, 239, 225, .08);
  display: none;
}
.aktion::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(212, 165, 42, .32), transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 90%, rgba(196, 49, 30, .28), transparent 60%);
  pointer-events: none;
}
.aktion::after {
  content: "21";
  position: absolute; right: -30px; bottom: -90px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 380px;
  line-height: 1;
  color: rgba(212, 165, 42, .08);
  letter-spacing: -.04em;
  pointer-events: none;
}
.aktion-body { position: relative; z-index: 2; }
.aktion .eyebrow { color: var(--gold); margin-bottom: 14px; }
.aktion h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 54px;
  line-height: 1;
  color: var(--paper);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.aktion h3 i {
  font-style: italic;
  color: var(--gold-soft);
  display: block;
  font-weight: 500;
}
.aktion-deal {
  margin-top: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(246, 239, 225, .12);
  border-bottom: 1px solid rgba(246, 239, 225, .12);
}
.aktion-deal .small {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted-d);
  font-weight: 600;
  margin-bottom: 6px;
}
.aktion-deal .price {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 60px;
  color: var(--gold);
  letter-spacing: -.02em;
  line-height: 1;
}
.aktion-deal .price small {
  font-size: 22px;
  color: var(--paper);
  margin-left: 4px;
  font-weight: 500;
  opacity: .8;
}
.aktion-when {
  display: flex; gap: 10px; align-items: center;
  padding: 14px 0;
  font-size: 13.5px;
  color: var(--paper);
}
.aktion-when b { font-weight: 700; color: var(--gold-soft); }
.aktion-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 8px;
  transition: transform .15s, background .15s;
}
.aktion-cta:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}
