/* ── Components — Revive ───────────────────────────── */

/* ── Container ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}
.container--narrow { max-width: 740px; }

/* ── Typography ── */
.t-display {
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 700;
  font-size: clamp(52px, 10vw, 88px);
  line-height: 0.95;
  letter-spacing: -1px;
}
.t-h1 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 700;
  font-size: clamp(38px, 7vw, 58px);
  line-height: 1.05;
}
.t-h2 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}
.t-h3 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
}
.t-body { font-size: 15px; line-height: 1.75; color: var(--text-sub); }
.t-small { font-size: 13px; color: var(--text-muted); }
.t-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--text-muted);
}
.t-verse {
  font-family: 'Crimson Pro', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-sub);
}
.accent { color: var(--violet); }
.gold   { color: var(--gold); }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(250,247,242,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar__logo {
  width: 28px; height: 36px;
  object-fit: contain;
}
.navbar__name {
  font-family: 'Crimson Pro', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--violet);
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.navbar__links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.navbar__links a:hover { color: var(--violet); }
@media (max-width: 600px) { .navbar__links { display: none; } }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s, box-shadow 0.15s;
  font-family: 'Crimson Pro', serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); opacity: 0.85; }

.btn--primary {
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  color: #fff;
  font-size: 17px;
  padding: 16px 32px;
  border-radius: var(--r-full);
  box-shadow: 0 8px 28px rgba(121,82,168,0.35);
}
.btn--primary:hover { box-shadow: 0 12px 36px rgba(121,82,168,0.45); }

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--r-full);
  border: 1px solid var(--border-soft);
}
.btn--ghost:hover { border-color: var(--violet); color: var(--violet); }

.btn--store {
  background: var(--text-main);
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: var(--r-md);
  gap: 8px;
}
.btn--store:hover { opacity: 0.88; }
.btn--store .store-label { font-size: 10px; opacity: 0.65; display: block; line-height: 1; }
.btn--store .store-name  { font-size: 15px; font-weight: 600; line-height: 1; }

/* ── Badge / Pill ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
}
.badge--violet {
  background: var(--violet-light);
  border: 1px solid var(--border);
  color: var(--violet);
}
.badge--gold {
  background: var(--gold-light);
  border: 1px solid #E8D5A0;
  color: var(--gold);
}

/* ── Section header ── */
.section-header { margin-bottom: 56px; }
.section-header .t-label { margin-bottom: 14px; }
.section-header .t-h2   { margin-bottom: 14px; }
.section-header .t-body { max-width: 520px; }

/* ── Card ── */
.card {
  background: var(--cream-50);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 28px;
}
.card--violet {
  background: var(--violet-light);
  border-color: var(--border);
}
.card--dark {
  background: var(--text-main);
  border-color: transparent;
}

/* ── Icon box ── */
.icon-box {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.icon-box--violet { background: var(--violet-mid); }
.icon-box--gold   { background: var(--gold-light); }
.icon-box--cream  { background: var(--cream-100); }

/* ── Divider ── */
.divider {
  height: 1px;
  background: var(--border-soft);
  margin: 80px 0;
}

/* ── Highlight box ── */
.highlight {
  border-left: 3px solid var(--violet);
  background: var(--violet-light);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.highlight p { font-size: 14px; color: var(--violet-dark); margin: 0; }

/* ── Dot list ── */
.dot-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.dot-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-sub);
}
.dot-list li::before {
  content: '✦';
  color: var(--violet);
  font-size: 11px;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ── Character figurine ── */
.char {
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(121,82,168,0.18));
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.char:hover { transform: translateY(-8px) scale(1.04); }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border-soft);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__logo { width: 22px; height: 28px; object-fit: contain; opacity: 0.6; }
.footer__name {
  font-family: 'Crimson Pro', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--violet);
}
.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer__links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--violet); }
.footer__copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section-header { margin-bottom: 36px; }
}