.kah-app {
  --kah-bg: #fff8ef;
  --kah-card: #ffffff;
  --kah-text: #1f1d1a;
  --kah-muted: #6f6a62;
  --kah-accent: #ef6f3b;
  --kah-accent-2: #20201f;
  --kah-border: #eadfd2;
  --kah-soft: #f8efe5;
  max-width: 760px;
  margin: 30px auto;
  color: var(--kah-text);
  font-family: inherit;
}

.kah-app * { box-sizing: border-box; }

.kah-shell {
  background: var(--kah-bg);
  border: 1px solid var(--kah-border);
  border-radius: 28px;
  padding: clamp(18px, 4vw, 38px);
  box-shadow: 0 18px 55px rgba(44, 31, 19, .08);
}

.kah-intro { text-align: center; margin-bottom: 24px; }
.kah-intro h2 { margin: 8px 0 8px; font-size: clamp(28px, 5vw, 44px); line-height: 1.05; }
.kah-intro p { margin: 0; color: var(--kah-muted); font-size: 16px; }
.kah-kicker { display: inline-block; font-weight: 800; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }

.kah-progress { height: 8px; background: rgba(31,29,26,.08); border-radius: 999px; overflow: hidden; margin: 20px 0 24px; }
.kah-progress-bar { height: 100%; width: 0; background: var(--kah-accent); border-radius: inherit; transition: width .28s ease; }

.kah-card { background: var(--kah-card); border: 1px solid var(--kah-border); border-radius: 22px; padding: clamp(20px, 4vw, 32px); }
.kah-step { font-size: 13px; font-weight: 800; color: var(--kah-accent); text-transform: uppercase; letter-spacing: .04em; }
.kah-card h3 { margin: 8px 0 6px; font-size: clamp(23px, 4vw, 32px); line-height: 1.15; }
.kah-card > p { margin: 0 0 22px; color: var(--kah-muted); }

.kah-options { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.kah-option {
  appearance: none;
  border: 1px solid var(--kah-border);
  background: #fff;
  color: var(--kah-text);
  border-radius: 16px;
  min-height: 82px;
  padding: 14px 16px;
  font: inherit;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.kah-option:hover, .kah-option:focus-visible { transform: translateY(-2px); border-color: var(--kah-accent); background: #fffaf5; outline: none; }
.kah-option-emoji { font-size: 28px; line-height: 1; }
.kah-back { margin-top: 18px; border: 0; background: transparent; color: var(--kah-muted); cursor: pointer; font: inherit; text-decoration: underline; }

.kah-result-icon { font-size: 40px; margin-bottom: 6px; }
.kah-results { display: grid; gap: 12px; margin: 22px 0; }
.kah-result-item { display: flex; gap: 14px; padding: 16px; border: 1px solid var(--kah-border); border-radius: 16px; background: #fff; }
.kah-result-rank { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 50%; display: grid; place-items: center; background: var(--kah-soft); font-weight: 900; }
.kah-result-main { min-width: 0; }
.kah-result-title { font-weight: 900; font-size: 18px; }
.kah-result-meta { color: var(--kah-muted); font-size: 13px; margin: 4px 0 10px; }
.kah-chefkoch { display: inline-block; color: var(--kah-accent-2); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.kah-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.kah-primary, .kah-secondary { border-radius: 999px; padding: 12px 17px; font: inherit; font-weight: 850; cursor: pointer; }
.kah-primary { background: var(--kah-accent-2); color: #fff; border: 1px solid var(--kah-accent-2); }
.kah-secondary { background: #fff; color: var(--kah-text); border: 1px solid var(--kah-border); }
.kah-note { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--kah-border); color: var(--kah-muted); font-size: 12px; line-height: 1.5; }

@media (max-width: 600px) {
  .kah-shell { border-radius: 20px; }
  .kah-options { grid-template-columns: 1fr; }
  .kah-option { min-height: 68px; }
  .kah-actions { flex-direction: column; }
  .kah-primary, .kah-secondary { width: 100%; }
}
