/* ===== COMO – Handwerk-Seite (kompakt, zentriert, mobil-schlank) ===== */

.como-media { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Intro: Text + 3D-Nigiri in einem Screen ---------- */
.hw-intro { padding: clamp(40px, 5vw, 64px) 0 clamp(32px, 5vw, 56px); }
.hw-intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.hw-intro__text h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 400; line-height: 1; letter-spacing: -.01em; }
.hw-intro__text h1 em { font-style: italic; color: var(--gold-bright); }
.hw-intro__text .lede { margin: 1.2rem 0 1.6rem; }
.hw-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.hw-intro__plate { display: flex; justify-content: center; align-items: center; }
.hw-intro__plate img { width: 100%; height: auto; max-width: min(44vh, 380px); display: block; filter: drop-shadow(0 26px 38px rgba(0,0,0,.5)); will-change: transform; }
@keyframes plateFloat { 0%, 100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-14px) rotate(3deg); } }
@media (prefers-reduced-motion: reduce) { .hw-intro__plate img { animation: none; } }

/* ---------- Prozess: schmale Reihe ---------- */
.hw-process { padding: clamp(36px, 5vw, 64px) 0; border-top: 1px solid var(--line-soft); text-align: center; }
.hw-flow { list-style: none; padding: 0; margin: 38px auto 0; max-width: 520px; text-align: left; }
.hw-flow li { position: relative; display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding-bottom: 26px; }
.hw-flow li:last-child { padding-bottom: 0; }
.hw-flow li::before { content: ""; position: absolute; left: 24px; top: 48px; bottom: -4px; width: 1px; background: linear-gradient(var(--gold), rgba(200,146,63,.1)); }
.hw-flow li:last-child::before { display: none; }
.hw-flow__n { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--display); font-size: 1.3rem; color: var(--gold-bright); background: linear-gradient(160deg, var(--surface-2), var(--bg-2)); position: relative; z-index: 1; }
.hw-flow__c { padding-top: 5px; }
.hw-flow__c h3 { font-family: var(--display); font-size: 1.25rem; color: var(--cream); margin: 0 0 .2rem; font-weight: 500; }
.hw-flow__c p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------- Vier Welten (kompakt, 2×2 auf Handy) ---------- */
.hw-section { padding: clamp(40px, 6vw, 72px) 0; }
.worlds { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.world { display: block; text-align: center; padding: 26px 18px; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--surface), var(--bg-2)); transition: .35s; }
.world:hover { border-color: var(--line); transform: translateY(-4px); box-shadow: var(--shadow); }
.world__art { display: block; width: 56px; height: 56px; margin: 0 auto 12px; color: var(--gold); transition: .35s; }
.world:hover .world__art { color: var(--gold-bright); transform: scale(1.07) rotate(-2deg); }
.world__art svg { width: 100%; height: 100%; }
.world h3 { font-family: var(--display); font-size: 1.15rem; margin: 0 0 .3rem; color: var(--cream); }
.world p { color: var(--muted); font-size: .82rem; margin: 0; }

/* ---------- Empfehlungen (Gerichte) ---------- */
.hw-gallery { padding: clamp(40px, 6vw, 72px) 0; }
.daily-line { color: var(--cream-dim); }
.daily-line .rot { color: var(--gold-bright); font-style: italic; display: inline-block; min-width: 6ch; transition: opacity .4s, transform .4s; }
.daily-line .rot.out { opacity: 0; transform: translateY(-6px); }
.hw-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.tilt { perspective: 900px; }
.tilt__inner { transform-style: preserve-3d; transition: transform .25s ease-out; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); background: var(--bg-2); }
.tilt__media { aspect-ratio: 4/3; position: relative; }
.tilt__media .photo-frame { position: absolute; inset: 0; }
.tilt__cap { padding: 16px 18px; transform: translateZ(28px); }
.tilt__cap h3 { font-size: 1.15rem; margin: 0 0 2px; color: var(--cream); }
.tilt__cap .p { color: var(--gold-bright); font-family: var(--display); font-size: 1.1rem; }
.tilt__cap .d { color: var(--muted); font-size: .82rem; }

/* ---------- CTA ---------- */
.hw-cta { text-align: center; padding: clamp(56px, 8vw, 100px) 0; border-top: 1px solid var(--line-soft); }

/* ---------- Mobil: weniger Scrollen ---------- */
@media (max-width: 860px) {
  .hw-intro__grid { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .hw-intro__plate { order: -1; }
  .hw-intro__plate img { max-width: min(74vw, 320px); }
  .hw-cta-row { justify-content: center; }
  .worlds { grid-template-columns: 1fr 1fr; }
  .hw-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hw-flow .step { padding: 8px 13px; }
  .hw-flow b { font-size: .84rem; }
}
@media (max-width: 480px) {
  .hw-cards { grid-template-columns: 1fr; }
}

