.portrait-svg { display: block; width: 100%; height: 100%; overflow: hidden; }

.spray-studio {
  --spray-line: rgba(224, 187, 128, .26);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(20px, 4vw, 38px);
  color: #f0e9d8;
  border: 1px solid var(--spray-line);
  background:
    radial-gradient(ellipse at 10% 5%, rgba(206, 144, 85, .13), transparent 42%),
    repeating-linear-gradient(135deg, transparent 0 28px, rgba(236, 215, 180, .012) 28px 29px),
    #162429;
  box-shadow: inset 0 0 0 5px rgba(5, 16, 18, .4), 0 24px 60px rgba(0, 0, 0, .25);
}

.spray-studio::before,
.spray-studio::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(224, 187, 128, .17);
  width: 34px;
  height: 34px;
}

.spray-studio::before { top: 11px; left: 11px; border-right: 0; border-bottom: 0; }
.spray-studio::after { right: 11px; bottom: 11px; border-left: 0; border-top: 0; }

.spray-studio__head { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin: 0 0 24px; }
.spray-eyebrow,
.spray-tools__label {
  display: block;
  color: #d9aa67;
  font: 700 10px/1.4 'DM Sans', sans-serif;
  letter-spacing: .19em;
}

.spray-studio__head h2 { margin: 8px 0 7px; font: 400 clamp(30px, 4vw, 48px)/1.04 'IM Fell English', Georgia, serif; }
.spray-studio__head h2 em { color: #e3be8a; font-weight: 400; }
.spray-studio__head p { margin: 0; color: #aab5ae; font: 400 12px/1.6 'DM Sans', sans-serif; }
.spray-studio__seal { color: #d9aa67; opacity: .8; font: 70px/.8 'IM Fell English', Georgia, serif; transform: rotate(-14deg); }

.spray-studio__body { display: grid; grid-template-columns: minmax(220px, 380px) minmax(190px, 1fr); gap: clamp(20px, 4vw, 48px); align-items: start; }
.spray-poster { transform: rotate(-1.4deg); transition: transform .22s ease; }
.spray-poster:hover { transform: rotate(0); }
.spray-poster__art {
  position: relative;
  width: 100%;
  aspect-ratio: 320 / 380;
  overflow: hidden;
  border: 8px solid #e1d6bc;
  background: #243437;
  box-shadow: 0 8px 0 #b2a68f, 0 18px 30px rgba(0, 0, 0, .38);
}

.spray-poster__art .portrait-svg { width: 100%; height: 100%; }
.spray-canvas { position: absolute; inset: 0; width: 100%; height: 100%; cursor: crosshair; touch-action: none; }
.spray-poster__stamp { display: block; margin: 18px 4px 0; color: #8f9992; font: 700 8px/1.4 'DM Sans', sans-serif; letter-spacing: .2em; text-align: right; }

.spray-tools { min-width: 0; display: grid; gap: 0; border-top: 1px solid var(--spray-line); }
.spray-tools__section { padding: 22px 0; border-bottom: 1px solid var(--spray-line); }
.spray-tools__label strong { color: #f0e9d8; float: right; letter-spacing: 0; }
.spray-swatches { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 17px; }
.spray-swatch {
  position: relative;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: inset 0 0 0 4px rgba(13, 23, 27, .26), 0 0 0 1px rgba(255, 255, 255, .2);
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease;
}
.spray-swatch:hover { transform: translateY(-3px); }
.spray-swatch.is-active { box-shadow: inset 0 0 0 4px rgba(13, 23, 27, .26), 0 0 0 2px #eacb95, 0 0 0 5px rgba(234, 203, 149, .16); }
.spray-swatch:focus-visible,
.spray-actions button:focus-visible,
.spray-size:focus-visible { outline: 2px solid #f2d7a9; outline-offset: 4px; }

.spray-size { width: 100%; margin: 19px 0 3px; accent-color: #d9aa67; cursor: pointer; }
.spray-tools__section p { max-width: 260px; margin: 13px 0 20px; color: #aab5ae; font: 400 12px/1.65 'DM Sans', sans-serif; }
.spray-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.spray-actions button {
  min-height: 39px;
  padding: 10px 14px;
  border: 1px solid #8c795f;
  background: transparent;
  color: #ead8b6;
  font: 700 9px/1.3 'DM Sans', sans-serif;
  letter-spacing: .14em;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.spray-actions button:hover { background: #d9aa67; color: #172429; transform: translateY(-2px); }
.spray-actions button:last-child { color: #172429; background: #d9aa67; border-color: #d9aa67; }
.spray-actions button:last-child:hover { background: #f1d6a7; }
.spray-status { display: block; min-height: 17px; margin-top: 12px; color: #a8c7ad; font: 400 10px/1.5 'DM Sans', sans-serif; }

@media (max-width: 650px) {
  .spray-studio__seal { display: none; }
  .spray-studio__body { grid-template-columns: 1fr; }
  .spray-poster { max-width: 380px; margin: 0 auto; }
  .spray-tools { grid-template-columns: repeat(2, 1fr); column-gap: 20px; }
  .spray-tools__section:last-child { grid-column: 1 / -1; }
}

@media (max-width: 380px) {
  .spray-tools { grid-template-columns: 1fr; }
  .spray-tools__section:last-child { grid-column: auto; }
  .spray-studio { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .spray-poster,
  .spray-swatch,
  .spray-actions button { transition: none; }
}
