/* tos.css — typography matched to model_art.css (ma-*) so the ToS page
   reads like the rest of the commission pages: Playfair Display body text,
   Cinzel titles, gold/cream palette, diamond bullets. */

.tos-wrap {
  max-width: 860px;
}

.tos-section {
  text-align: left;
}

/* Section titles — same scale/family as .ma-col-title */
.tos-section .credits-section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(19px, 2.2vw, 23px);
  letter-spacing: 4px;
  color: var(--gold);
}

/* Intro paragraphs — same scale/family as .ma-note p */
.tos-text {
  font-family: "Playfair Display", serif;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 400;
  line-height: 1.85;
  color: var(--cream);
  opacity: 0.85;
  margin: 0 0 1.25rem;
}

/* Clause lists — same scale/family/bullet as .ma-list li */
.tos-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tos-list li {
  position: relative;
  padding: 14px 0 14px 24px;
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--cream);
  opacity: 0.85;
  border-bottom: 1px solid rgba(245, 232, 168, 0.05);
  transition: opacity 0.25s, padding-left 0.25s;
}

.tos-list li:last-child {
  border-bottom: none;
}

.tos-list li::before {
  content: "◈";
  position: absolute;
  left: 0;
  top: 16px;
  font-size: 10px;
  color: var(--green-deep);
}

.tos-list li:hover {
  opacity: 1;
  padding-left: 30px;
}

/* Usage tier cards — styled like .ma-addon */
.tos-tier-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tos-tier-card {
  border: 1px solid rgba(245, 232, 168, 0.07);
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.3s, transform 0.3s;
}

.tos-tier-card:hover {
  border-color: rgba(245, 232, 168, 0.18);
  transform: translateY(-3px);
}

.tos-tier-card .credit-role {
  font-family: "Cinzel", serif;
  font-size: 20px;
  letter-spacing: 3px;
  color: rgba(143, 168, 50, 0.9);
}

.tos-tier-card .credit-name {
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(19px, 2vw, 22px);
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(245, 232, 168, 0.45), 0 0 28px rgba(245, 232, 168, 0.2);
}

.tos-tier-card .credit-note {
  font-family: "Playfair Display", serif;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 400;
  color: var(--cream);
  opacity: 0.85;
  line-height: 1.75;
}

@media (max-width: 640px) {
  .tos-list li {
    font-size: 18px;
  }
}