/* ============================================================================
   pricing.css — the pricing section: packages in a compact grid (stacked on
   mobile) with a closed disclosure each, then the single-services list.
   Rendered by js/pricing.js from window.PRICING. No prices are written here.
   ========================================================================== */

.pricing__packages {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px dotted var(--client-line);
  background: var(--client-line);
}

.pricing__index {
  margin-top: clamp(4rem, 8vw, 8rem);
}

.pricing__index .section__index {
  margin-bottom: clamp(1.25rem, 3vw, 2.25rem);
}

.pkg {
  background: var(--bg);
  padding: var(--client-box-pad, 1.35rem);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}

.pkg__cat {
  font-family: var(--font-client-mono);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.pkg__name {
  font-family: var(--font-client-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.pkg__scope {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--fg);
  max-width: 32ch;
}

.pkg__price {
  margin-top: 0.15rem;
  font-family: var(--font-client-mono);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.pkg__price--request {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Disclosure (native <details>) ---------------------------------------- */
.pkg__disc {
  margin-top: auto;
  border-top: 1px dotted var(--client-line);
  padding-top: 0.65rem;
}
.pkg__disc-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-client-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
}
.pkg__disc-summary::-webkit-details-marker { display: none; }
.pkg__disc-summary:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 3px;
}
.pkg__disc-icon {
  font-family: var(--font-client-mono);
  font-weight: 400;
  transition: transform var(--dur-ui, 0.2s) var(--ease-spring, ease);
}
.pkg__disc[open] .pkg__disc-icon { transform: rotate(45deg); }

/* Four labelled spec rows, replacing the old bullet list on 04.09.26. The label
   is the same mono caps as the disclosure summary so the block reads as one
   spec sheet; the value carries the technical detail and wraps freely, which is
   why label and value stack rather than sitting in two columns — "Grade &
   sound" next to "Brand-matched master grade, mixed SFX & music (-14 LUFS)" in
   a half-width card would leave the value on three ragged lines. */
.pkg__specs {
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.pkg__spec-label {
  font-family: var(--font-client-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.pkg__spec-value {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--fg);
}

/* --- Single services list -------------------------------------------------- */
.pricing__singles {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.singles {
  list-style: none;
  margin: clamp(1rem, 2vw, 1.5rem) 0 0;
  padding: 0;
  border-top: 1px dotted var(--client-line);
}
.single {
  display: grid;
  grid-template-columns: minmax(9rem, 14rem) minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 0.5rem 1.5rem;
  padding: 0.95rem 0;
  border-bottom: 1px dotted var(--client-line);
}
.single__name {
  font-family: var(--font-client-display);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.single__scope {
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--muted);
}
.single__price {
  justify-self: end;
  font-family: var(--font-client-mono);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}
.single__price--request {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Responsive ------------------------------------------------------------ */
@media (max-width: 860px) {
  .pricing__packages { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .single {
    grid-template-columns: 1fr auto;
    gap: 0.3rem 1rem;
  }
  .single__scope { grid-column: 1 / -1; order: 3; }
}
