/* ============================================================
   book.css — booking + thank-you pages (loaded after style.css)
   Reuses the tokens, buttons and nav/footer from style.css.
   ============================================================ */

.book {
  position: relative; z-index: 3;
  padding-top: calc(var(--nav-h) + clamp(30px, 6svh, 70px));
  padding-bottom: clamp(60px, 10svh, 120px);
}
.book .wrap { width: min(760px, 92vw); }

.book-head { display: grid; gap: 14px; text-align: center; margin-bottom: clamp(34px, 6svh, 58px); }
.book-head .stage-title { font-size: clamp(2.4rem, 6vw, 4.2rem); }
.book-head .stage-body { margin-inline: auto; }

/* ---------------------------------------------------------- form */
.book-form { display: grid; gap: clamp(28px, 4svh, 42px); }

.field-set { border: 0; margin: 0; padding: 0; display: grid; gap: 16px; }
.field-legend {
  font-size: .8rem; font-weight: 800; letter-spacing: .28em; text-transform: uppercase;
  color: var(--brass); padding: 0 0 4px;
}
.field { display: grid; gap: 8px; }
.field-row { display: grid; gap: 16px; }
@media (min-width: 700px) { .field-row { grid-template-columns: 1fr 1fr; } }

.field label {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream-dim);
}
.req { color: var(--red); }

.field input,
.field select,
.field textarea {
  width: 100%; font: inherit; font-size: 1rem;
  color: var(--cream);
  background: rgba(20, 16, 11, .6);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(244, 236, 220, .3); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(20, 16, 11, .88);
  box-shadow: 0 0 0 3px rgba(255, 77, 94, .16);
}
/* native date/number controls sit on a dark ground */
.field input[type="date"] { color-scheme: dark; }

.field select {
  appearance: none; cursor: pointer; padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brass) 50%),
    linear-gradient(135deg, var(--brass) 50%, transparent 50%);
  background-position: calc(100% - 23px) calc(50% + 1px), calc(100% - 17px) calc(50% + 1px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.field select option { background: #14100b; color: var(--cream); }

/* ---------------------------------------------------------- what to expect */
.expect {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(29, 23, 16, .72), rgba(11, 8, 6, .72));
  padding: clamp(22px, 4vw, 34px);
  display: grid; gap: 16px;
}
.expect h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  text-transform: uppercase; letter-spacing: .015em; line-height: 1;
  color: var(--cream);
}
.expect-intro { color: var(--cream-dim); font-size: .96rem; }
.expect-list { display: grid; gap: 13px; }
/* NOT a grid: each li holds <strong> plus a trailing text node, and grid would
   put them in separate cells. Absolute bullet keeps the text in normal flow. */
.expect-list li {
  position: relative; padding-left: 26px;
  color: var(--cream-dim); font-size: .97rem; line-height: 1.55;
}
.expect-list li::before {
  content: "✦"; position: absolute; left: 0; top: 0;
  color: var(--brass); font-size: .85rem; line-height: 1.75;
}
.expect-list strong { color: var(--cream); font-weight: 700; }

/* ---------------------------------------------------------- agreement gate */
.agree {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
  border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 20px;
  background: rgba(20, 16, 11, .5);
  color: var(--cream-dim); font-size: .95rem; line-height: 1.55;
  cursor: pointer;
  transition: border-color .3s, background .3s;
}
.agree:hover { border-color: var(--cream-faint); }
.agree input {
  width: 20px; height: 20px; margin-top: 1px;
  accent-color: var(--red); cursor: pointer;
}
.agree.is-checked { border-color: rgba(255, 77, 94, .5); background: rgba(255, 77, 94, .07); }
.agree.is-checked span { color: var(--cream); }

/* ---------------------------------------------------------- submit */
.book-submit { display: grid; gap: 12px; justify-items: center; text-align: center; }
.btn[disabled] { opacity: .38; cursor: not-allowed; box-shadow: none; }
.btn[disabled]:hover { transform: none; background: var(--red); }
.agree-note { font-size: .82rem; letter-spacing: .06em; color: var(--cream-faint); }
.book-fine { font-size: .85rem; color: var(--cream-faint); }
.book-fine a { color: var(--brass); border-bottom: 1px solid rgba(217, 164, 95, .4); }
.book-fine a:hover { color: var(--cream); }

/* ---------------------------------------------------------- thank you page */
.thanks {
  min-height: 100svh; display: grid; place-items: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  position: relative; z-index: 3;
}
.thanks-inner {
  width: min(620px, 92vw);
  display: grid; gap: 18px; justify-items: center; text-align: center;
}
.thanks-inner .stage-title { font-size: clamp(2.4rem, 6vw, 4.2rem); }
.thanks-inner .stage-body { margin-inline: auto; }
.thanks-next {
  display: grid; gap: 12px; justify-items: center;
  border: 1px solid var(--line); border-radius: 16px;
  background: rgba(20, 16, 11, .5);
  padding: 22px 26px; margin-top: 8px;
  color: var(--cream-dim); font-size: .95rem; line-height: 1.6;
}
.thanks-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 10px; }

/* ---------------------------------------------------------- spam trap + errors */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error {
  border: 1px solid rgba(255, 77, 94, .45);
  background: rgba(255, 77, 94, .08);
  color: var(--cream);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 22px;
  font-size: .95rem; line-height: 1.55;
}
.form-error a { color: var(--red); border-bottom: 1px solid rgba(255, 77, 94, .5); }
.form-error a:hover { color: var(--cream); }

/* ---------------------------------------------------------- policy links in the gate */
.agree a { color: var(--red); border-bottom: 1px solid rgba(255, 77, 94, .45); }
.agree a:hover { color: var(--cream); }

/* ---------------------------------------------------------- legal pages */
.legal {
  position: relative; z-index: 3;
  padding-top: calc(var(--nav-h) + clamp(30px, 6svh, 70px));
  padding-bottom: clamp(60px, 10svh, 120px);
}
.legal .wrap { width: min(760px, 92vw); }
.legal-head { display: grid; gap: 12px; margin-bottom: clamp(26px, 5svh, 44px); }
.legal-head .stage-title { font-size: clamp(2.2rem, 5.4vw, 3.8rem); }
.legal .updated {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cream-faint);
}
.legal-note {
  border: 1px solid rgba(217, 164, 95, .35);
  background: rgba(217, 164, 95, .07);
  border-radius: 14px; padding: 16px 20px; margin-bottom: 28px;
  color: var(--cream-dim); font-size: .92rem; line-height: 1.6;
}
.legal h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  text-transform: uppercase; letter-spacing: .015em; line-height: 1.1;
  color: var(--cream); margin: 34px 0 12px;
}
.legal p { color: var(--cream-dim); line-height: 1.7; margin-bottom: 14px; }
.legal ul { display: grid; gap: 10px; margin: 0 0 18px; }
.legal ul li {
  position: relative; padding-left: 24px;
  color: var(--cream-dim); line-height: 1.65;
}
.legal ul li::before {
  content: "º6"; position: absolute; left: 0; top: 0;
  color: var(--brass); font-size: .8rem; line-height: 1.9;
}
.legal strong { color: var(--cream); font-weight: 700; }
.legal a { color: var(--brass); border-bottom: 1px solid rgba(217, 164, 95, .4); }
.legal a:hover { color: var(--cream); }

/* ---------------------------------------------------------- studio demo page */
.nav-links a[aria-current="page"] { color: var(--cream); }

.demo {
  position: relative; z-index: 3;
  padding-top: calc(var(--nav-h) + clamp(30px, 6svh, 70px));
  padding-bottom: clamp(60px, 10svh, 120px);
}
.demo-head {
  display: grid; gap: 14px; justify-items: center; text-align: center;
  margin-bottom: clamp(48px, 9svh, 96px);
}
.demo-head .stage-title { font-size: clamp(2.6rem, 6.4vw, 5rem); }
.demo-head .stage-body { max-width: 56ch; }

.demo-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(70px, 12svh, 130px); }
.demo-step { display: grid; gap: clamp(22px, 3.4svh, 34px); }

.demo-copy { display: grid; gap: 12px; }
@media (min-width: 900px) {
  /* eyebrow + title on the left, the explanation beside them */
  .demo-copy {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    grid-template-areas: "eyebrow body" "title body";
    column-gap: clamp(32px, 5vw, 70px); align-items: end;
  }
  .demo-copy .stage-eyebrow { grid-area: eyebrow; }
  .demo-copy .demo-title { grid-area: title; }
  .demo-copy .stage-body { grid-area: body; align-self: end; }
}
.demo-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: .98; letter-spacing: .015em; text-transform: uppercase;
  color: var(--cream);
}

.demo-shot { margin: 0; display: grid; gap: 14px; justify-items: center; }
.demo-zoom {
  display: block; width: 100%; padding: 0; margin: 0;
  border: 1px solid rgba(244, 236, 220, .16); border-radius: 16px;
  overflow: clip; background: #07090d; cursor: zoom-in;
  box-shadow: 0 34px 80px -42px rgba(0, 0, 0, .95);
  transition: transform .5s var(--ease-out), border-color .3s, box-shadow .5s;
}
.demo-zoom:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 164, 95, .45);
  box-shadow: 0 40px 90px -42px rgba(0, 0, 0, .95), 0 0 70px -26px rgba(217, 164, 95, .38);
}
.demo-zoom:focus-visible { outline: 2px solid var(--brass); outline-offset: 5px; }
.demo-zoom img { display: block; width: 100%; height: auto; }
.demo-shot figcaption.script { color: var(--brass); font-size: 1.25rem; }

.demo-cta {
  display: grid; gap: 16px; justify-items: center; text-align: center;
  margin-top: clamp(80px, 13svh, 140px);
  padding-top: clamp(50px, 8svh, 84px);
  border-top: 1px solid var(--line);
}
.demo-cta .stage-title { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.demo-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 6px; }
.demo-fine { color: var(--cream-faint); font-size: .82rem; line-height: 1.6; max-width: 62ch; margin-top: 18px; }

/* enlarged screenshot */
.shot-dialog {
  padding: 0; border: 0; background: transparent; overflow: visible;
  max-width: 96vw; max-height: 94svh; cursor: zoom-out;
}
.shot-dialog::backdrop { background: rgba(7, 5, 3, .88); backdrop-filter: blur(6px); }
.shot-dialog img {
  display: block; width: auto; height: auto; max-width: 96vw; max-height: 94svh;
  border-radius: 12px; border: 1px solid rgba(244, 236, 220, .16);
}
.shot-close {
  position: absolute; top: 10px; right: 10px;
  width: 38px; height: 38px; border-radius: 50%; border: 0;
  background: var(--red); color: #17060a;
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  box-shadow: 0 8px 24px -8px rgba(255, 77, 94, .6);
}

/* ---------------------------------------------------------- contact page */
.contact {
  position: relative; z-index: 3;
  padding-top: calc(var(--nav-h) + clamp(30px, 6svh, 70px));
  padding-bottom: clamp(60px, 10svh, 120px);
}
.contact .wrap { width: min(980px, 92vw); }
.contact-head { display: grid; gap: 14px; justify-items: center; text-align: center; margin-bottom: clamp(36px, 6svh, 60px); }
.contact-head .stage-title { font-size: clamp(2.6rem, 6.4vw, 5rem); }
.contact-head .stage-body { max-width: 54ch; }

.contact-grid { display: grid; gap: 20px; align-items: start; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); } }
.contact-side { display: grid; gap: 20px; }
.contact-form-card { justify-items: stretch; }
.contact-form { display: grid; gap: 16px; }
.contact-form textarea { min-height: 150px; }
.contact-submit { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; margin-top: 4px; }
.contact-note { color: var(--cream-faint); font-size: .85rem; }
.contact-fine { color: var(--cream-faint); font-size: .82rem; }
.contact-fine a { color: var(--brass); border-bottom: 1px solid rgba(217, 164, 95, .4); }
.contact-form-card .form-error { margin-bottom: 0; }
.contact-sent { display: grid; gap: 10px; padding: 8px 0; outline: none; }
.contact-sent .script { color: var(--brass); font-size: 1.4rem; }
.contact-sent h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 2.5rem); line-height: 1; letter-spacing: .02em; text-transform: uppercase;
}
.contact-sent p:last-child { color: var(--cream-dim); line-height: 1.6; max-width: 46ch; }
.contact-card {
  display: grid; gap: 14px; align-content: start; justify-items: start;
  border: 1px solid var(--line); border-radius: 20px;
  background: linear-gradient(180deg, rgba(29, 23, 16, .72), rgba(11, 8, 6, .72));
  padding: clamp(24px, 4vw, 38px);
}
.contact-card.is-email { border-color: rgba(255, 77, 94, .35); }
.contact-label { font-size: .78rem; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; color: var(--brass); }
.contact-email {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.25rem, 2.3vw, 1.6rem); letter-spacing: .02em; line-height: 1.15;
  color: var(--cream); overflow-wrap: anywhere;
  border-bottom: 2px solid rgba(255, 77, 94, .5); padding-bottom: 4px;
  transition: color .25s, border-color .25s;
}
.contact-email:hover, .contact-email:focus-visible { color: var(--red); border-color: var(--red); }
.contact-text { color: var(--cream-dim); line-height: 1.6; }
.contact-card .btn { margin-top: 6px; }
.contact-address { font-style: normal; color: var(--cream-dim); font-size: 1.1rem; line-height: 1.75; }
.contact-address strong { color: var(--cream); font-weight: 800; }

.contact-next { display: grid; gap: 14px; margin-top: clamp(40px, 7svh, 70px); }
@media (min-width: 760px) { .contact-next { grid-template-columns: repeat(3, 1fr); } }
.contact-link {
  display: grid; gap: 4px; padding: 20px 22px;
  border: 1px solid var(--line); border-radius: 16px; background: rgba(20, 16, 11, .5);
  transition: border-color .25s, transform .4s var(--ease-out);
}
.contact-link:hover, .contact-link:focus-visible { border-color: var(--brass); transform: translateY(-3px); }
.contact-link .script { color: var(--brass); font-size: 1.2rem; }
.contact-link b { font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; letter-spacing: .03em; text-transform: uppercase; color: var(--cream); }

/* ---------------------------------------------------------- order page */
.order {
  position: relative; z-index: 3;
  padding-top: calc(var(--nav-h) + clamp(30px, 6svh, 70px));
  padding-bottom: clamp(60px, 10svh, 120px);
}
.order-head { display: grid; gap: 14px; justify-items: center; text-align: center; margin-bottom: clamp(34px, 6svh, 58px); }
.order-head .stage-title { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.order-head .stage-body { max-width: 54ch; }

.order-grid { display: grid; gap: 22px; align-items: start; }
@media (min-width: 1000px) { .order-grid { grid-template-columns: minmax(0, 1fr) 350px; gap: 26px; } }
.order-form, .order-side { display: grid; gap: 18px; min-width: 0; }
@media (min-width: 1000px) { .order-side { position: sticky; top: calc(var(--nav-h) + 18px); } }

.order-card {
  min-width: 0; margin: 0;
  border: 1px solid var(--line); border-radius: 18px;
  background: linear-gradient(180deg, rgba(29, 23, 16, .72), rgba(11, 8, 6, .72));
  padding: clamp(20px, 3vw, 28px);
  display: grid; gap: 16px;
}
.order-card > legend { float: left; width: 100%; }   /* keeps the legend inside the card's box */
.order-card > legend + * { clear: both; }
.order-text { color: var(--cream-dim); font-size: .97rem; line-height: 1.6; }
.order-fine { color: var(--cream-faint); font-size: .84rem; line-height: 1.55; }
.order-fine.is-center { text-align: center; }
.order-hint {
  border-left: 3px solid var(--brass); background: rgba(217, 164, 95, .08);
  border-radius: 8px; padding: 10px 14px;
  color: var(--cream); font-size: .9rem; line-height: 1.55;
}
.order-hint.is-error { border-left-color: var(--red); background: rgba(255, 77, 94, .08); }

/* format */
.fmt-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fmt-card {
  position: relative; display: grid; justify-items: center; gap: 6px; text-align: center;
  padding: 18px 12px 16px; border-radius: 14px; cursor: pointer;
  border: 1px solid var(--line); background: rgba(20, 16, 11, .5);
  transition: border-color .25s, background .25s;
}
.fmt-card:hover { border-color: var(--cream-faint); }
.fmt-card.is-on { border-color: rgba(255, 77, 94, .6); background: rgba(255, 77, 94, .08); }
.fmt-card input { position: absolute; opacity: 0; pointer-events: none; }
.fmt-card:has(input:focus-visible) { outline: 2px solid var(--brass); outline-offset: 3px; }
.fmt-card b { color: var(--cream); font-weight: 800; }
.fmt-sub { color: var(--cream-dim); font-size: .85rem; }
.fmt-disc { width: 42px; height: 42px; border-radius: 50%; position: relative; margin-bottom: 4px; }
.fmt-disc.is-vinyl { background: repeating-radial-gradient(circle, #111 0 1.5px, #262626 1.5px 3px); }
.fmt-disc.is-vinyl::after { content: ""; position: absolute; inset: 32%; border-radius: 50%; background: var(--red); }
.fmt-disc.is-cd { background: conic-gradient(#d9dde3, #a9d8f0, #f0d4a8, #bfe8c9, #d9dde3); }
.fmt-disc.is-cd::after { content: ""; position: absolute; inset: 40%; border-radius: 50%; background: #0b0806; }
.qty-field { max-width: 180px; }

/* mix check */
.mix-check { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.mix-check .btn { padding: 11px 20px; }
.mix-file { display: grid; min-width: 0; }
.mix-file b { color: var(--cream); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mix-file span { color: var(--cream-dim); font-size: .85rem; }

/* address lookup */
.addr-search { position: relative; }
.addr-list {
  position: absolute; z-index: 20; left: 0; right: 0; top: calc(100% + 4px);
  list-style: none; margin: 0; padding: 6px;
  background: #16110b; border: 1px solid rgba(244, 236, 220, .2); border-radius: 12px;
  box-shadow: 0 22px 50px -18px rgba(0, 0, 0, .9);
  max-height: 320px; overflow-y: auto;
}
.addr-list li[role="option"] {
  padding: 10px 12px; border-radius: 8px; cursor: pointer;
  color: var(--cream-dim); font-size: .92rem; line-height: 1.4;
}
.addr-list li[role="option"]:hover, .addr-list li.is-active { background: rgba(255, 77, 94, .12); color: var(--cream); }
.addr-attr { padding: 6px 12px 2px; color: var(--cream-faint); font-size: .72rem; text-align: right; }

/* sleeve / cover */
.cover-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .cover-row { grid-template-columns: 1fr; } }
.cover-slot { display: grid; gap: 10px; align-content: start; min-width: 0; }
.cover-label { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-dim); }
.cover-prev {
  display: grid; place-items: center; width: 100%; aspect-ratio: 1; padding: 0; overflow: hidden;
  border: 1px dashed rgba(244, 236, 220, .25); border-radius: 12px;
  background: rgba(20, 16, 11, .6); cursor: pointer; transition: border-color .25s;
}
.cover-prev:hover { border-color: var(--brass); }
.cover-prev:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
.cover-prev img { width: 100%; height: 100%; object-fit: cover; }
.cover-empty { color: var(--cream-faint); font-size: .9rem; }
.logo-white { background: #fff; border-style: solid; }
.logo-black { background: #0d0d0d; border-style: solid; }
img.kv-logo { width: 46% !important; height: auto !important; object-fit: contain; }
.logo-white img.kv-logo { filter: brightness(0); }   /* the logo file is white on transparent */

.seg { display: flex; flex-wrap: wrap; gap: 6px; }
.seg label, .seg button {
  position: relative; cursor: pointer;
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  color: var(--cream-dim); background: rgba(20, 16, 11, .5);
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 13px;
  transition: color .2s, border-color .2s, background .2s;
}
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg label:hover, .seg button:hover { color: var(--cream); }
.seg .is-on { color: var(--cream); border-color: rgba(255, 77, 94, .6); background: rgba(255, 77, 94, .1); }
.seg label:has(input:focus-visible), .seg button:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }

/* preview: the sleeve with the disc half out of it, to scale — a 7" record is
   95% of its sleeve; a CD cover is drawn at 68% inside the same frame */
.sleeve-frame { display: grid; place-items: center; width: 100%; max-width: 300px; aspect-ratio: 1.47; margin: 4px auto 0; }
.sleeve-stage { position: relative; width: 100%; aspect-ratio: 1.47; }
.sleeve-frame.is-cd .sleeve-stage { width: 68%; }
.sleeve {
  position: absolute; left: 0; top: 50%; z-index: 1;
  display: grid; place-items: center; width: 66%; aspect-ratio: 1; overflow: hidden;
  transform: translateY(-50%);
  background: #ece8e1; border-radius: 3px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .55), inset 0 0 0 1px rgba(0, 0, 0, .1);
  transition: left .3s ease, transform .3s ease;
}
.sleeve img { width: 100%; height: 100%; object-fit: cover; }
.sleeve-plain { color: #8d877d; font-size: .75rem; text-align: center; padding: 6px; }
.sleeve-stage .disc-prev { position: absolute; right: 0; top: 50%; width: 62.7%; transform: translateY(-50%); transition: right .3s ease, opacity .25s ease; }
.face-back .sleeve { left: 50%; transform: translate(-50%, -50%); }
.face-back .disc-prev { right: 17%; opacity: 0; }
@media (prefers-reduced-motion: reduce) { .sleeve, .sleeve-stage .disc-prev { transition: none; } }

.disc-prev { position: relative; width: 100%; aspect-ratio: 1; border-radius: 50%; isolation: isolate; }
.disc-prev i { position: absolute; border-radius: 50%; }
.disc-prev .body { inset: 0; background: #141414; }
.disc-prev.is-cd .body { background: #c9cdd4; }
.disc-prev.is-vinyl .rings {
  inset: 0;
  background: repeating-radial-gradient(circle at 50% 50%, rgba(0, 0, 0, .34) 0 1px, rgba(255, 255, 255, .05) 1px 3px);
  -webkit-mask: radial-gradient(circle at 50% 50%, transparent 0 40%, #000 40.5% 66.5%, transparent 67%);
          mask: radial-gradient(circle at 50% 50%, transparent 0 40%, #000 40.5% 66.5%, transparent 67%);
}
.disc-prev.is-cd .rings {
  inset: 0;
  background: conic-gradient(from 0deg, rgba(255,255,255,.30), rgba(150,220,255,.12), rgba(255,210,150,.24), rgba(180,255,200,.12), rgba(255,255,255,.30));
  -webkit-mask: radial-gradient(circle at 50% 50%, transparent 0 24%, #000 24.5% 99%, transparent 99%);
          mask: radial-gradient(circle at 50% 50%, transparent 0 24%, #000 24.5% 99%, transparent 99%);
}
.disc-prev .lbl { inset: 25%; background: #7a7772; box-shadow: 0 0 0 1px rgba(0, 0, 0, .28); }
.disc-prev.is-cd .lbl { inset: 23%; background: transparent; box-shadow: none; }
.disc-prev .hole { inset: 47.2%; background: #0b0806; box-shadow: 0 0 0 1px rgba(0, 0, 0, .4); }
.disc-prev.is-cd .hole { inset: 44%; }
.face-tabs { justify-content: center; }

/* price + submit */
.price-tbl { width: 100%; border-collapse: collapse; color: var(--cream-dim); font-size: .95rem; }
.price-tbl td { padding: 7px 0; }
.price-tbl td:last-child { text-align: right; font-variant-numeric: tabular-nums; color: var(--cream); }
.price-tbl .tot td { border-top: 1px solid var(--line); padding-top: 12px; font-weight: 800; color: var(--cream); font-size: 1.05rem; }
.order-submit { width: 100%; }
.order-side .agree { padding: 14px 16px; }

.vn-title { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: .02em; text-transform: uppercase; color: var(--brass); line-height: 1.1; }

/* after ordering */
.order-done { display: grid; gap: 16px; justify-items: center; text-align: center; max-width: 760px; margin: 0 auto; outline: none; }
.order-done .stage-title { font-size: clamp(2.2rem, 5.4vw, 3.8rem); }
.order-number {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 16px;
  border: 1px solid rgba(217, 164, 95, .4); background: rgba(217, 164, 95, .07);
  border-radius: 16px; padding: 16px 22px; margin-top: 8px;
}
.order-number-label { font-size: .75rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--brass); }
.order-number b { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.4rem, 3.4vw, 1.9rem); letter-spacing: .06em; color: var(--cream); }
.order-copy { padding: 9px 18px; }
.order-summary { color: var(--cream-dim); }
.done-steps { list-style: none; counter-reset: done; display: grid; gap: 16px; width: 100%; margin: 12px 0 0; padding: 0; text-align: left; }
.done-steps li {
  counter-increment: done; position: relative; display: grid; gap: 10px; justify-items: start;
  border: 1px solid var(--line); border-radius: 16px; background: rgba(20, 16, 11, .55);
  padding: 22px 24px 22px 76px;
}
.done-steps li::before {
  content: counter(done, decimal-leading-zero); position: absolute; left: 24px; top: 20px;
  font-family: var(--font-display); font-size: 1.7rem; color: var(--red);
}
.done-steps h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; letter-spacing: .02em; text-transform: uppercase; color: var(--cream); }
.done-steps p { color: var(--cream-dim); line-height: 1.6; }
