/* theme: soft-review — Spinsy AT 2026 */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap");

:root {
  --header-bg: #ffffff;
  --header-color: #2c2c2c;
  --header-hover: #800020;
  --header-border: rgba(128, 0, 32, 0.12);

  --page-bg: #fdfbf7;
  --page-color: #2c2c2c;
  --body-bg: #fdfbf7;
  --ink: #2c2c2c;
  --ink-soft: rgba(44, 44, 44, 0.78);
  --ink-faint: rgba(44, 44, 44, 0.56);

  --footer-bg: #4a0e17;
  --footer-color: rgba(253, 251, 247, 0.86);
  --footer-hover: #d4af37;

  --link-color: #800020;
  --list-mark: #d4af37;

  --brand: #800020;
  --brand-deep: #4a0e17;
  --green: #d4af37;
  --gold: #d4af37;
  --line: rgba(128, 0, 32, 0.12);
  --surface: #ffffff;
  --surface-raised: #f7f1e6;
  --shadow: 0 18px 48px rgba(74, 14, 23, 0.08);
}

body {
  font-family: Lato, Arial, Helvetica, sans-serif;
  background:
    linear-gradient(180deg, #ffffff 0%, transparent 18%),
    radial-gradient(circle at 88% 8%, rgba(212, 175, 55, 0.12), transparent 26%),
    radial-gradient(circle at 8% 42%, rgba(128, 0, 32, 0.06), transparent 28%),
    var(--body-bg);
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  color: var(--brand-deep);
}

h1 {
  max-width: 28ch;
}

.brand-lockup__logo,
.brand-lockup__sign {
  box-shadow: 0 10px 24px rgba(128, 0, 32, 0.18);
}

.brand-lockup__name span {
  color: var(--ink-faint);
}

.pill-link {
  color: #fff;
  background: linear-gradient(145deg, var(--brand), var(--brand-deep));
  box-shadow: 0 14px 32px rgba(128, 0, 32, 0.22);
}

.solid-link {
  color: #fff;
  background: linear-gradient(145deg, var(--brand), var(--brand-deep));
  box-shadow: 0 14px 32px rgba(128, 0, 32, 0.18);
}

.ghost-link {
  color: var(--brand-deep);
  background: #fff;
  border-color: var(--line);
}

.hero-stage {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(253, 251, 247, 0.88) 58%, rgba(247, 241, 230, 0.94) 100%);
  box-shadow: var(--shadow);
}

.hero-stage::before {
  background: radial-gradient(circle, rgba(128, 0, 32, 0.12), transparent 64%);
}

.hero-stage::after {
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 64%);
}

.small-label,
.tag {
  color: var(--brand);
  background: rgba(128, 0, 32, 0.06);
  border-color: rgba(128, 0, 32, 0.18);
}

.small-label::before {
  background: var(--gold);
  box-shadow: 0 0 16px color-mix(in srgb, var(--gold) 70%, transparent);
}

.glass-card,
.glass-panel,
.info-card,
.offer-ticket,
.score-card {
  background: #fff;
  box-shadow: var(--shadow);
}

.metric {
  background: rgba(128, 0, 32, 0.04);
}

.metric strong {
  color: var(--brand-deep);
}

.media-frame {
  background:
    linear-gradient(145deg, rgba(128, 0, 32, 0.06), rgba(212, 175, 55, 0.08)),
    var(--surface);
  box-shadow: 0 18px 44px rgba(74, 14, 23, 0.1);
}

.offer-row + .media-frame {
  margin-top: 16px;
}

.offer-ticket::after {
  background: rgba(128, 0, 32, 0.08);
}

.quick-table th {
  color: #fff;
  background: linear-gradient(145deg, var(--brand), var(--brand-deep));
}

.quick-table tr:nth-child(even) td {
  background: rgba(128, 0, 32, 0.03);
}

.cta-band {
  border-color: rgba(128, 0, 32, 0.16);
  background:
    linear-gradient(145deg, rgba(128, 0, 32, 0.06), rgba(212, 175, 55, 0.08)),
    #fff;
}

.disclosure {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.1);
}

.text-panel ol,
.text-panel ul,
.info-card ol,
.info-card ul,
.offer-ticket ul {
  margin: 0;
  padding-left: 1.15rem;
}

.text-panel li,
.info-card li,
.offer-ticket li {
  margin: 0.4rem 0;
}

.text-panel li::marker,
.info-card li::marker,
.offer-ticket li::marker,
.content-inject li::marker {
  color: var(--list-mark);
}

.pro-list li::marker { color: #2d6b55; }
.con-list li::marker { color: var(--brand); }

.tabs-group { margin-top: 16px; }

.kasse-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.kasse-tabs button {
  min-height: 52px;
  padding: 12px 16px;
  border: 0;
  color: var(--ink-faint);
  background: #fff;
  font: 800 0.78rem/1 Lato, Arial, Helvetica, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.kasse-tabs button.is-active {
  color: #fff;
  background: var(--brand);
}

.kasse-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: var(--surface);
}

.kasse-panel[hidden] { display: none; }

.kasse-panel h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.faq-list details .text-panel { padding: 0 18px 18px; }

.section-nav {
  gap: 16px;
  font-size: 0.84rem;
}

.rating-mark,
.rating-score {
  display: inline-block;
  color: var(--brand-deep);
  background: var(--gold);
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
}

.dock-cta__panel {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
}

.footer-panel {
  color: var(--footer-color);
}

.footer h2,
.footer h3 {
  color: #fff;
}

.footer .legal-copy {
  color: rgba(253, 251, 247, 0.62);
  border-top-color: rgba(253, 251, 247, 0.16);
}

.feature-stack li {
  background: #fff;
  border-color: var(--line);
}

.feature-stack li::before {
  background: linear-gradient(145deg, var(--gold), #b8942a);
}

.feature-stack li::after {
  border-color: var(--brand-deep);
}

.age-note {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.32);
}

.topbar.is-scrolled {
  box-shadow: 0 10px 28px rgba(74, 14, 23, 0.08);
}

.geo-toast {
  position: fixed;
  left: 50%;
  bottom: -120px;
  z-index: 80;
  transform: translateX(-50%);
  max-width: min(92vw, 560px);
  padding: 12px 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand-deep);
  box-shadow: 0 16px 36px rgba(74, 14, 23, 0.28);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.geo-toast.is-visible {
  bottom: 92px;
}

@media (max-width: 1180px) {
  .topbar .ghost-link { display: none; }
}
