/* Floortom Productions — minimalist remote mixing studio */

:root {
  --bg: #0a1a2e;
  --bg-2: #0d1f36;
  --bg-3: #112543;
  --line: rgba(212, 190, 141, 0.14);
  --line-strong: rgba(212, 190, 141, 0.32);
  --ink: #ece5d1;
  --ink-dim: rgba(236, 229, 209, 0.62);
  --ink-mute: rgba(236, 229, 209, 0.38);
  --gold: #d4be8d;
  --gold-deep: #b89968;
  --gold-faint: rgba(212, 190, 141, 0.08);
  --live: #6fb98a;

  --serif: "Jost", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", ui-monospace, monospace;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(212, 190, 141, 0.06), transparent 60%),
    var(--bg);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.app {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 56px 0;
}

@media (max-width: 800px) {
  .app { padding: 20px 24px 0; }
}

.muted { color: var(--ink-mute); }
.mono { font-family: var(--mono); font-size: 0.82em; letter-spacing: 0.02em; }

/* ---------- Wordmark ---------- */
.wordmark {
  display: inline-flex;
  align-items: center;
  user-select: none;
  line-height: 0;
}
.wordmark-img {
  display: block;
  height: auto;
  width: auto;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.25));
}
.wordmark-sm .wordmark-img {
  height: 66px;
}
.wordmark-lg .wordmark-img {
  height: 134px;
}
@media (max-width: 600px) {
  .wordmark-sm .wordmark-img { height: 55px; }
}

/* ---------- Nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0 28px;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 64px;
}

@media (max-width: 960px) {
  .nav { margin-bottom: 28px; padding-bottom: 18px; }
}

.nav-brand {
  display: inline-flex;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  text-transform: lowercase;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gold);
  border: 1px solid var(--line-strong);
  padding: 10px 16px;
  border-radius: 999px;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--gold-faint);
  border-color: var(--gold);
}

@media (max-width: 800px) {
  .nav-links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 24px 0 80px;
}
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 8px 0 56px;
  }
  /* On phones / tablets: chat first, headline below. */
  .hero-right { order: 1; }
  .hero-left  { order: 2; }
  .hero-left .kicker { margin-bottom: 18px; }
  .hero-sub { margin-bottom: 32px; }
  .chat {
    min-height: 480px;
    max-height: none;
  }
}
@media (max-width: 600px) {
  .chat { min-height: 440px; }
  .hero-h { font-size: 40px; }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.kicker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}

.hero-h {
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--ink);
  text-wrap: balance;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 460px;
  margin: 0 0 48px;
  text-wrap: pretty;
}

.hero-meta {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
@media (max-width: 500px) {
  .hero-meta { gap: 28px; }
}

.stat-n {
  font-size: 28px;
  font-weight: 200;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.stat-l {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: lowercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ---------- Chat ---------- */
.chat {
  background: var(--chat-bg, var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  min-height: 560px;
  max-height: 640px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(212,190,141,0.04) inset,
    0 30px 60px -30px rgba(0,0,0,0.5);
  /* Chat gets its own voice — DM Sans is clean, slightly rounded,
     reads differently from Jost (site headings) without clashing. */
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
}

.chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.18);
}
.chat-head-left {
  display: flex; align-items: center; gap: 10px;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-deep);
}
.dot-live {
  background: var(--live);
  box-shadow: 0 0 0 0 rgba(111,185,138,0.6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(111,185,138,0.45); }
  70% { box-shadow: 0 0 0 7px rgba(111,185,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(111,185,138,0); }
}
.chat-head-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
}
.chat-step-count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.chat-body {
  padding: 28px 24px 32px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.chat-body::-webkit-scrollbar { width: 6px; }
.chat-body::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }

.chat-pair {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.msg {
  display: flex;
  flex-direction: column;
  max-width: 88%;
  animation: msgIn 0.4s ease both;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.msg-studio { align-self: flex-start; }
.msg-you { align-self: flex-end; align-items: flex-end; }

.msg-meta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
  text-transform: lowercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  padding: 0 4px;
}
.msg-bubble {
  padding: 12px 16px;
  border-radius: 12px;
  /* Editorial serif for message prose — matches Claude's chat feel.
     DM Sans stays on the chat chrome (header, buttons, options). */
  font-family: "Source Serif 4", "Georgia", serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  border: 1px solid var(--line);
}
.msg-studio .msg-bubble {
  background: var(--chat-bubble, var(--bg-3));
  color: var(--ink);
  border-top-left-radius: 3px;
}

.chat-goto {
  align-self: flex-end;
  margin-top: 4px;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
}
.chat-light .chat-head {
  background: rgba(10, 26, 46, 0.06);
  border-bottom-color: rgba(10, 26, 46, 0.18);
}
.chat-light .chat-head-label,
.chat-light .chat-step-count .muted {
  color: rgba(10, 26, 46, 0.55);
}
.chat-light .chat-step-count {
  color: rgba(10, 26, 46, 0.85);
}
.chat-light .dot { background: rgba(10, 26, 46, 0.45); }
.chat-light .dot-live { background: #2c6b46; }

.chat-light .msg-meta { color: rgba(10, 26, 46, 0.5); }
.chat-light .msg-bubble {
  color: var(--chat-ink);
  border-color: rgba(10, 26, 46, 0.18);
}
.chat-light .msg-studio .msg-bubble em {
  color: #6b4d12;  /* deeper gold so it pops on light gold */
}
.chat-light .msg-you .msg-bubble {
  background: rgba(10, 26, 46, 0.9);
  color: #e6d6ab;
  border-color: rgba(10, 26, 46, 0.95);
}

.chat-light .opt {
  color: var(--chat-ink);
  border-color: rgba(10, 26, 46, 0.22);
  background: rgba(255, 255, 255, 0.18);
}
.chat-light .opt:hover {
  background: rgba(10, 26, 46, 0.08);
  border-color: rgba(10, 26, 46, 0.55);
  color: var(--chat-ink);
}
.chat-light .opt-glyph { color: rgba(10, 26, 46, 0.55); }
.chat-light .opt:hover .opt-glyph { color: var(--chat-ink); }

.chat-light .recommend-card {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(10, 26, 46, 0.25);
}
.chat-light .rec-name { color: #4a2f08; }
.chat-light .rec-price-num { color: var(--chat-ink); }
.chat-light .rec-price-unit,
.chat-light .rec-blurb,
.chat-light .rec-list li,
.chat-light .rec-turn .muted { color: rgba(10, 26, 46, 0.7); }
.chat-light .rec-list li::before { color: #6b4d12; }
.chat-light .rec-foot { border-top-color: rgba(10, 26, 46, 0.18); }
.chat-light .rec-badge {
  color: #6b4d12;
  border-color: rgba(10, 26, 46, 0.3);
}
.chat-light .btn-ghost {
  color: var(--chat-ink);
  border-color: rgba(10, 26, 46, 0.3);
}
.chat-light .btn-ghost:hover {
  color: #6b4d12;
  border-color: #6b4d12;
}
.chat-light .btn-solid {
  background: var(--chat-ink);
  color: #e6d6ab;
  border-color: var(--chat-ink);
}
.chat-light .btn-solid:hover {
  background: #1a3a6a;
  border-color: #1a3a6a;
}

.chat-light .addon-card {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(10, 26, 46, 0.3);
}
.chat-light .addon-tag {
  background: var(--chat-bg);
  color: #6b4d12;
}
.chat-light .addon-name { color: var(--chat-ink); }
.chat-light .addon-price-num { color: #6b4d12; }
.chat-light .addon-price-unit,
.chat-light .addon-blurb { color: rgba(10, 26, 46, 0.7); }

.chat-light .restart { color: rgba(10, 26, 46, 0.55); }
.chat-light .restart:hover { color: #6b4d12; }
.chat-light .chat-body::-webkit-scrollbar-thumb {
  background: rgba(10, 26, 46, 0.18);
}
.msg-studio .msg-bubble em {
  color: var(--gold);
  font-style: normal;
  font-weight: 400;
}
.msg-you .msg-bubble {
  background: var(--gold-faint);
  border-color: var(--line-strong);
  color: var(--gold);
  border-top-right-radius: 3px;
}

.chat-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  align-self: flex-end;
  width: 92%;
  align-items: flex-end;
}
.opt {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  justify-content: flex-start;
  transition: all 0.18s ease;
}
.opt:hover {
  border-color: var(--gold);
  background: var(--gold-faint);
  color: var(--gold);
}
.opt-glyph {
  font-family: var(--mono);
  color: var(--gold-deep);
  font-size: 12px;
  flex-shrink: 0;
}
.opt:hover .opt-glyph { color: var(--gold); }

/* recommendation card */
.recommend-card {
  background: linear-gradient(180deg, rgba(212,190,141,0.06), rgba(212,190,141,0.02));
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: 22px;
  margin-top: 6px;
  animation: msgIn 0.5s ease both;
}
.rec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.rec-name {
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.rec-badge {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gold-deep);
  border: 1px solid var(--line-strong);
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.rec-price {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 12px;
}
.rec-price-num {
  font-size: 32px;
  font-weight: 200;
  color: var(--ink);
}
.rec-price-unit {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
}
.rec-blurb {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
  margin: 0 0 14px;
}
.rec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}
.rec-list li {
  font-size: 13px;
  color: var(--ink-dim);
  padding-left: 14px;
  position: relative;
}
.rec-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.rec-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  gap: 12px;
  flex-wrap: wrap;
}
.rec-turn { display: flex; flex-direction: column; font-size: 13px; }
.rec-turn .muted { font-family: var(--mono); font-size: 10px; }
.rec-actions { display: flex; gap: 8px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
  border: 1px solid var(--line-strong);
  transition: all 0.18s;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-solid {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  font-weight: 400;
}
.btn-solid:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.btn-block { width: 100%; padding: 14px; }

/* addon card inside chat */
.addon-card {
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-md);
  padding: 16px 18px;
  background: rgba(0,0,0,0.15);
  margin-top: 4px;
  animation: msgIn 0.5s ease both;
  position: relative;
}
.addon-tag {
  position: absolute;
  top: -8px;
  left: 14px;
  background: var(--bg-2);
  padding: 0 8px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.addon-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
  gap: 12px;
}
.addon-name {
  font-size: 15px;
  color: var(--ink);
  font-weight: 400;
}
.addon-price { display: flex; align-items: baseline; gap: 6px; }
.addon-price-num {
  font-size: 18px;
  color: var(--gold);
  font-weight: 300;
}
.addon-price-unit {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
}
.addon-blurb {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.5;
  margin: 0;
}

/* addons strip in pricing section — see v2 additions block below */

.restart {
  align-self: flex-start;
  background: transparent;
  border: none;
  color: var(--ink-mute);
  font-size: 12px;
  font-family: var(--mono);
  padding: 4px 0;
  margin-top: 8px;
}
.restart:hover { color: var(--gold); }

/* ---------- Section scaffolding ---------- */
.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold-deep) 20%,
    var(--gold) 50%,
    var(--gold-deep) 80%,
    transparent 100%
  );
  opacity: 0.55;
  margin: 8px 0;
}

.sec {
  padding: 36px 0 40px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
}
@media (max-width: 800px) {
  .sec { grid-template-columns: 1fr; gap: 28px; padding: 28px 0 32px; }
}

.sec-head { position: sticky; top: 24px; align-self: start; }
@media (max-width: 800px) { .sec-head { position: static; } }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold-deep);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eyebrow-num {
  color: var(--gold);
}

.sec-title {
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

/* ---------- Services ---------- */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  /* Solid navy backdrop so the cursor glow doesn't bleed through */
  background: var(--bg);
}
@media (max-width: 600px) {
  .services { grid-template-columns: 1fr; }
}
.service {
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
}
.service-n {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.service-t {
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
}
.service-d {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.55;
}

/* ---------- Process ---------- */
.process {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-n {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.step-t {
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 6px;
}
.step-d {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.55;
  max-width: 560px;
}

/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  background: var(--bg);
  border: 1px solid var(--line);
}
.tier {
  background: var(--bg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 380px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--gold-deep);
  background: linear-gradient(180deg, rgba(212,190,141,0.06), rgba(212,190,141,0.01));
  z-index: 2;
}
.tier-hi {
  background: linear-gradient(180deg, rgba(212,190,141,0.07), rgba(212,190,141,0.02));
  box-shadow: inset 0 0 0 1px var(--gold-deep);
  z-index: 1;
}
.tier-flag {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 10px;
  text-align: center;
  padding: 5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tier-hi { padding-top: 38px; }

.tier-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.tier-name {
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
}
.tier-badge {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--gold-deep);
  letter-spacing: 0.08em;
  padding: 3px 6px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
}
.tier-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 10px; }
.tier-price-num {
  font-size: 32px;
  font-weight: 200;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.tier-price-unit {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
}
.tier-blurb {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.5;
  margin: 0 0 16px;
}
.tier-rule {
  height: 1px;
  background: var(--line);
  margin: 0 0 14px;
}
.tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.tier-list li {
  font-size: 13px;
  color: var(--ink-dim);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.tier-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.tier-turn {
  font-size: 13px;
  color: var(--ink);
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.tier-turn .muted {
  font-family: var(--mono);
  font-size: 10px;
  display: block;
  margin-bottom: 2px;
}

/* ---------- Studio ---------- */
.studio {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 800px) {
  .studio { grid-template-columns: 1fr; }
}

.studio-img {
  width: 100%;
  position: relative;
  cursor: pointer;
}
.studio-video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: block;
  background: var(--bg-2);
}
.studio-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(10, 26, 46, 0.72);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 2;
}
.studio-play svg {
  width: 22px;
  height: 22px;
  margin-left: 1px; /* visually center the triangle */
}
.studio-play:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.06);
}
.studio-img.is-playing .studio-play {
  opacity: 0;
  pointer-events: none;
}
.studio-img.is-playing:hover .studio-play {
  opacity: 1;
  pointer-events: auto;
}
.studio-mute {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 26, 46, 0.72);
  border: 1px solid var(--line-strong);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 3;
  padding: 0;
}
.studio-mute svg { width: 16px; height: 16px; }
.studio-mute:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.studio-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  background: rgba(10, 26, 46, 0.65);
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid var(--line);
  pointer-events: none;
  z-index: 2;
}
.img-placeholder {
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(135deg,
      rgba(212,190,141,0.04) 0,
      rgba(212,190,141,0.04) 8px,
      transparent 8px,
      transparent 16px),
    var(--bg-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
}
.img-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}

.studio-list {
  display: flex;
  flex-direction: column;
}
.gear-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.gear-row:last-child { border-bottom: 1px solid var(--line); }
.gear-k {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold-deep);
  letter-spacing: 0.06em;
  text-transform: lowercase;
}
.gear-v {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}

/* ---------- Work ---------- */
.work {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.record { display: flex; flex-direction: column; gap: 12px; }
.record-art {
  aspect-ratio: 1;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, border-color 0.3s ease;
}
.record:hover .record-art {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}
.record-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.record:hover .record-art img {
  transform: scale(1.03);
}
.art-ph {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(212,190,141,0.08), transparent 60%),
    repeating-linear-gradient(90deg,
      rgba(212,190,141,0.03) 0,
      rgba(212,190,141,0.03) 1px,
      transparent 1px,
      transparent 12px);
}
.art-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
}
.record-artist {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
}
.record-title {
  font-size: 14px;
  color: var(--ink-dim);
  font-style: italic;
}
.record-foot {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 4px;
}

/* ---------- FAQ ---------- */
.faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  font-size: 18px;
  font-weight: 300;
  text-align: left;
  letter-spacing: -0.005em;
  transition: color 0.18s;
}
.faq-q:hover { color: var(--gold); }
.faq-q-toggle {
  font-family: var(--mono);
  color: var(--gold);
  font-size: 22px;
  font-weight: 200;
  width: 24px;
  text-align: center;
}
.faq-a {
  padding: 0 4px 24px;
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
  max-width: 640px;
  animation: msgIn 0.3s ease both;
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
@media (max-width: 800px) {
  .contact { grid-template-columns: 1fr; gap: 32px; }
}
.contact-lede {
  font-size: 17px;
  color: var(--ink-dim);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 380px;
}
.contact-rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.c-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  gap: 12px;
}
.c-k {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold-deep);
  letter-spacing: 0.06em;
}
.c-v { font-size: 14px; color: var(--ink); }
.c-v a:hover { color: var(--gold); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form label > span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold-deep);
  letter-spacing: 0.06em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.18s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea { resize: vertical; }

/* ---------- Footer ---------- */
.foot {
  margin-top: 80px;
  padding: 56px 0 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}
@media (max-width: 800px) {
  .foot { grid-template-columns: 1fr; }
}
.foot-tagline {
  font-size: 14px;
  color: var(--ink-dim);
  margin-top: 16px;
  max-width: 220px;
  line-height: 1.5;
}
.foot-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.foot-col { display: flex; flex-direction: column; gap: 8px; }
.foot-col a {
  font-size: 13px;
  color: var(--ink-dim);
}
.foot-col a:hover { color: var(--gold); }
.foot-k {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold-deep);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.foot-bot {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ink-mute);
}

/* =====================================================
   v2 additions — cart / checkout / intake
   ===================================================== */

/* ----- Tier selection state ----- */
.tier-selected {
  background: linear-gradient(180deg, rgba(212,190,141,0.08), rgba(212,190,141,0.02));
  box-shadow: inset 0 0 0 1px var(--gold);
  z-index: 1;
}
.tier-selected .tier-flag {
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 10px;
  text-align: center;
  padding: 5px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
}
.tier-selected { padding-top: 38px; }

.tier-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.tier-add {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.03em;
  padding: 11px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: all 0.18s ease;
}
.tier-add:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-faint);
}
.tier-add-glyph {
  font-family: var(--mono);
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
}

.tier-sel { display: flex; flex-direction: column; gap: 10px; }
.tier-sel-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  color: var(--ink);
}
.tier-sel-line .muted {
  font-family: var(--mono);
  font-size: 10px;
}
.tier-sel-total {
  font-size: 16px;
  color: var(--gold);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.tier-sel-note {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ----- Quantity stepper ----- */
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--bg-2);
  overflow: hidden;
  height: 36px;
}
.qty-btn {
  width: 32px;
  height: 100%;
  background: transparent;
  border: none;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1;
  padding: 0;
  transition: background 0.15s;
}
.qty-btn:hover { background: var(--gold-faint); }
.qty-n {
  min-width: 32px;
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ----- Add-on rows (now checkbox-driven) ----- */
.addons-heading {
  margin-top: 28px;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold-deep);
  letter-spacing: 0.08em;
  text-transform: lowercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.addons-heading .eyebrow-num { color: var(--gold); }

.addons-strip {
  padding: 16px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-md);
}
.addons-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

/* Override v1 addon-row styles for checkbox version */
.addon-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.18s ease;
  /* Solid navy so the cursor glow doesn't bleed through */
  background: var(--bg);
}
.addon-row + .addon-row { margin-top: 0; padding-left: 18px; border-left: 1px solid var(--line); }
@media (max-width: 700px) {
  .addons-strip { grid-template-columns: 1fr; gap: 14px; }
}
.addon-row:hover { border-color: var(--gold); }
.addon-row-on {
  border-color: var(--gold);
  /* Keep the warm gold tint look, but layered over an opaque navy so the
     glow still gets blocked. */
  background-color: var(--bg);
  background-image: linear-gradient(rgba(212,190,141,0.08), rgba(212,190,141,0.08));
}
.addon-row input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--bg-2);
  cursor: pointer;
  position: relative;
  transition: all 0.15s ease;
  flex-shrink: 0;
  margin: 0;
}
.addon-row input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.addon-row input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-size: 12px;
  font-weight: 600;
}
.addon-row-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.addon-row-name {
  font-size: 14px;
  color: var(--ink);
  font-weight: 400;
}
.addon-row-blurb {
  font-size: 12px;
  color: var(--ink-dim);
  line-height: 1.4;
}
.addon-row-price {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-align: right;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ----- Studio (simplified) ----- */
.studio-simple {
  display: block;
}
.studio-simple .studio-img {
  max-width: 720px;
}

/* ----- Order bar (fixed bottom) ----- */
.order-bar {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: min(900px, calc(100vw - 32px));
  z-index: 80;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.55), 0 0 0 1px rgba(212,190,141,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: orderIn 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes orderIn {
  from { opacity: 0; transform: translate(-50%, 30px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

.order-bar-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 16px;
}
@media (max-width: 600px) {
  .order-bar-row { grid-template-columns: 1fr; gap: 8px; padding: 12px; }
}

.order-bar-toggle {
  background: transparent;
  border: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 4px;
  text-align: left;
  min-width: 0;
}
.order-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 14px;
  padding: 0 8px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
}
.order-bar-summary {
  font-size: 14px;
  color: var(--ink-dim);
  letter-spacing: 0.01em;
  min-width: 0;
  flex: 1;
}
.order-bar-total {
  color: var(--gold);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.order-bar-chev {
  font-family: var(--mono);
  color: var(--gold-deep);
  font-size: 12px;
  margin-left: 6px;
}
.order-bar-checkout {
  white-space: nowrap;
  padding: 12px 20px;
  font-size: 13px;
}

/* expanded tray */
.order-tray {
  padding: 22px 22px 16px;
  border-bottom: 1px solid var(--line);
  animation: trayIn 0.28s ease;
  max-height: 60vh;
  overflow-y: auto;
}
@keyframes trayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.tray-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.tray-title {
  font-size: 14px;
  font-family: var(--mono);
  color: var(--gold-deep);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}
.tray-clear {
  background: transparent;
  border: none;
  color: var(--ink-mute);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 4px 8px;
}
.tray-clear:hover { color: var(--gold); }

.tray-lines {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.tray-line {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.tray-line:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 600px) {
  .tray-line { grid-template-columns: 1fr; gap: 8px; }
}
.tray-line-name {
  font-size: 14px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tray-line-note {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
}
.tray-line-total {
  font-size: 14px;
  color: var(--gold);
  font-weight: 400;
  min-width: 64px;
  text-align: right;
}

.tray-addons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.tray-addon {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 13px;
  transition: all 0.15s ease;
}
.tray-addon:hover { border-color: var(--gold); }
.tray-addon.on { border-color: var(--gold); background: var(--gold-faint); }
.tray-addon input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  background: var(--bg);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin: 0;
}
.tray-addon input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.tray-addon input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg);
  font-size: 10px;
}
.tray-addon-name { color: var(--ink); }
.tray-addon-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.tray-totals {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 14px;
}
.tray-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink);
}
.tray-row.muted { color: var(--ink-dim); }
.tray-row.muted span:last-child { font-family: var(--mono); font-size: 12px; }
.tray-grand {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 16px;
  color: var(--gold);
}
.tray-grand span:last-child { font-weight: 400; }

/* ----- Modal ----- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 12, 22, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5vh 16px;
  overflow-y: auto;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

.modal {
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.7);
  width: 100%;
  max-width: 560px;
  position: relative;
  animation: modalIn 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.modal-wide { max-width: 940px; }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--ink-mute);
  font-size: 26px;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  z-index: 2;
  transition: all 0.15s;
}
.modal-close:hover { color: var(--gold); background: var(--gold-faint); }

/* ----- Checkout & intake shared ----- */
.checkout, .intake, .intake-done {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  min-height: 480px;
}
.intake-done {
  grid-template-columns: 1fr;
  text-align: center;
  padding: 64px 48px;
  min-height: auto;
}
@media (max-width: 800px) {
  .checkout, .intake { grid-template-columns: 1fr; }
}

.checkout-left, .intake-left {
  padding: 40px 44px;
}
.checkout-right, .intake-right {
  padding: 40px 36px;
  background: rgba(0,0,0,0.18);
  border-left: 1px solid var(--line);
}
@media (max-width: 800px) {
  .checkout-right, .intake-right { border-left: none; border-top: 1px solid var(--line); }
  .checkout-left, .intake-left { padding: 28px 24px; }
  .checkout-right, .intake-right { padding: 28px 24px; }
}

.checkout-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  text-transform: lowercase;
  margin-bottom: 14px;
}
.checkout-h {
  font-family: var(--serif);
  font-weight: 200;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  line-height: 1.2;
  text-wrap: balance;
}
.checkout-sub {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.55;
  margin: 0 0 24px;
  text-wrap: pretty;
}

/* PayPal area */
.pay-box {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  background: rgba(0,0,0,0.15);
}
.paypal-container {
  min-height: 50px;
}
.pay-status {
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
  padding: 14px 0;
  letter-spacing: 0.04em;
}
.pay-fail {
  color: var(--ink-dim);
  background: rgba(0,0,0,0.18);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0;
}
.pay-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pay-divider::before,
.pay-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.pay-note {
  font-size: 11px;
  color: var(--ink-mute);
  margin: 14px 0 0;
  line-height: 1.5;
}
.pay-note .mono { color: var(--gold-deep); }

/* checkout summary right column */
.checkout-lines {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
}
.checkout-lines li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  align-items: baseline;
}
.checkout-lines li:last-child { border-bottom: 1px solid var(--line); }
.cl-name { color: var(--ink); }
.cl-note {
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gold-deep);
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.cl-total {
  color: var(--gold);
  font-size: 14px;
  font-weight: 400;
}

.checkout-totals {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
}
.ct-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-dim);
}
.ct-row span:last-child { font-family: var(--mono); }
.ct-grand {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 18px;
  color: var(--gold);
}
.ct-grand span:last-child { font-family: var(--serif); font-weight: 400; }
.ct-note {
  font-family: var(--mono);
  font-size: 10px;
  margin-top: 12px;
  letter-spacing: 0.05em;
}

/* ----- Intake form ----- */
.intake-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.intake-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 500px) { .intake-grid { grid-template-columns: 1fr; } }

.intake-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.intake-form label > span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold-deep);
  letter-spacing: 0.06em;
}
.intake-form input,
.intake-form textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 12px 14px;
  border-radius: 6px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.18s;
}
.intake-form input:focus,
.intake-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.intake-form textarea { resize: vertical; min-height: 80px; }

.intake-files {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.intake-files-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold-deep);
  letter-spacing: 0.06em;
}

.dropzone {
  border: 1.5px dashed var(--line-strong);
  border-radius: 10px;
  background: rgba(0,0,0,0.18);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dropzone:hover, .dropzone-over {
  border-color: var(--gold);
  background: var(--gold-faint);
}
.dropzone-icon {
  font-size: 28px;
  color: var(--gold);
  font-weight: 200;
  line-height: 1;
  margin-bottom: 12px;
}
.dropzone-text {
  font-size: 14px;
  color: var(--ink);
}
.dropzone-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dropzone-sub {
  font-family: var(--mono);
  font-size: 10px;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

.filelist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filelist li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(0,0,0,0.18);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
}
.filelist-name {
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.filelist-size {
  font-family: var(--mono);
  font-size: 10px;
}
.filelist-x {
  background: transparent;
  border: none;
  color: var(--ink-mute);
  font-size: 18px;
  line-height: 1;
  width: 22px;
  height: 22px;
  border-radius: 4px;
}
.filelist-x:hover { color: var(--gold); background: var(--gold-faint); }

.intake-files-note {
  font-size: 11px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin: 4px 0 0;
}
.intake-files-note .mono { color: var(--gold-deep); }

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.btn:disabled:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.intake-help {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.intake-help .muted {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
}
.intake-help a { color: var(--gold); }
.intake-help a:hover { color: var(--ink); }

/* ----- Intake success ----- */
.intake-done .done-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  font-size: 30px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 14px auto 22px;
}
.intake-done .checkout-h {
  margin: 0 auto 12px;
  max-width: 460px;
}
.intake-done .checkout-sub {
  margin: 0 auto 28px;
  max-width: 460px;
}
.done-meta {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 28px;
  font-size: 13px;
  background: rgba(0,0,0,0.15);
}
.done-meta .muted {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
  margin-right: 8px;
  letter-spacing: 0.06em;
}

/* page padding so order-bar doesn't cover footer text */
body { padding-bottom: 90px; }
@media (max-width: 600px) { body { padding-bottom: 130px; } }

/* ---------- Cursor spotlight ---------- */
/* The .app creates an isolated stacking context so the glow can live BEHIND
   all its content via z-index: -1 without escaping out behind the body bg. */
.app {
  position: relative;
  z-index: 1;
  isolation: isolate;
}
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 640px;
  height: 640px;
  pointer-events: none;
  /* Behind every other piece of .app content — opaque cards block it,
     transparent gaps reveal it (so it reads as the BACKGROUND glowing). */
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(212, 190, 141, 0.12) 0%,
    rgba(212, 190, 141, 0.07) 18%,
    rgba(212, 190, 141, 0.026) 38%,
    rgba(212, 190, 141, 0.005) 58%,
    transparent 72%
  );
  opacity: 0;
  transition: opacity 0.55s ease;
  will-change: transform;
  /* Blur softens, then the noise filter warps the soft disc into a cloud */
  filter: blur(10px) url(#cursor-noise);
}

/* Hide on touch / small screens — no cursor to follow */
@media (hover: none), (max-width: 700px) {
  .cursor-glow { display: none; }
}
