:root {
  --bone: #f6f4f0;
  --black: #000;
  --mauve: #62504d;
  --sand: #d5bba3;
  --line: #e0dbbf;
  --warm: #8a7469;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
}
body {
  background: var(--bone);
  color: var(--black);
  font-family: "Open Sans", system-ui, sans-serif;
  line-height: 1.6;
}
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--mauve);
  width: 0;
  transition: width 0.35s ease;
  z-index: 10;
}
.mast {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 20px 0 12px;
  pointer-events: none;
  z-index: 5;
  background: linear-gradient(var(--bone) 70%, transparent);
}
.wordmark {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  color: var(--black);
}
.substudio {
  font-size: 9px;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  text-transform: lowercase;
  color: var(--warm);
  margin-top: 5px;
}
.stage {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 84px 24px 72px;
}
.screen {
  width: 100%;
  max-width: 480px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.screen.active {
  opacity: 1;
  transform: translateY(0);
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 20px;
}
.phead {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}
.thumb {
  width: 78px;
  height: 78px;
  flex-shrink: 0;
  object-fit: cover;
  background: var(--line);
  filter: saturate(0.92);
}
.pname {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  letter-spacing: 0.16em;
  color: var(--black);
  line-height: 1.1;
}
.pdesc {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  margin-top: 5px;
}
.q {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
}
.qsub {
  font-size: 13px;
  color: var(--warm);
  margin-bottom: 22px;
}
.ratings {
  margin-bottom: 26px;
}
.rrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.rrow:last-child {
  border-bottom: none;
}
.rlabel {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mauve);
}
.stars {
  display: flex;
  gap: 7px;
}
.star {
  width: 28px;
  height: 28px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.12s ease;
}
.star svg {
  width: 100%;
  height: 100%;
  display: block;
}
.star .out {
  stroke: var(--mauve);
  stroke-width: 1.3;
  fill: none;
}
.star .fill {
  fill: var(--mauve);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.star.on .fill {
  opacity: 1;
}
.star:active {
  transform: scale(0.85);
}
textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--black);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  padding: 14px 16px;
  resize: none;
  min-height: 104px;
  outline: none;
  transition: border-color 0.15s ease;
}
textarea:focus {
  border-color: var(--mauve);
}
textarea::placeholder {
  color: #b3aaa3;
}
.example {
  font-size: 12px;
  color: var(--warm);
  margin-top: 9px;
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  line-height: 1.4;
}
.photo-row {
  margin-top: 18px;
}
.photo-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mauve);
  border: 1px solid var(--line);
  padding: 11px 16px;
  transition: border-color 0.15s ease;
}
.photo-btn:hover {
  border-color: var(--mauve);
}
.photo-btn svg {
  width: 15px;
  height: 15px;
  stroke: var(--mauve);
  fill: none;
  stroke-width: 1.5;
}
input[type="file"] {
  display: none;
}
.photo-preview {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.photo-preview .pp {
  position: relative;
  width: 56px;
  height: 56px;
}
.photo-preview img {
  width: 56px;
  height: 56px;
  object-fit: cover;
}
.photo-preview .x {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 20px;
  height: 20px;
  background: var(--black);
  color: var(--bone);
  border-radius: 50%;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
}
.photo-hint {
  font-size: 11px;
  color: var(--warm);
  margin-top: 10px;
  letter-spacing: 0.02em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}
.next {
  background: var(--black);
  color: var(--bone);
  border: none;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.next:hover {
  background: var(--mauve);
}
.next:disabled {
  opacity: 0.4;
  cursor: default;
}
.back {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  cursor: pointer;
  background: none;
  border: none;
}
.back:hover {
  color: var(--mauve);
}
.err {
  color: #9c3b3b;
  font-size: 13px;
  margin-top: 14px;
  min-height: 18px;
}
.center {
  text-align: center;
}
.center .q {
  margin-bottom: 16px;
}
.center .qsub {
  margin: 0 auto;
  max-width: 38ch;
}
@media (max-width: 480px) {
  .pname {
    font-size: 22px;
  }
  .q {
    font-size: 22px;
  }
  .thumb {
    width: 66px;
    height: 66px;
  }
  .star {
    width: 26px;
    height: 26px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .screen {
    transition: opacity 0.01s;
  }
  .progress {
    transition: none;
  }
}
.done-cta {
  display: inline-block;
  margin-top: 34px;
  border: 1px solid var(--mauve);
  color: var(--mauve);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: background 0.2s ease, color 0.2s ease;
}
.done-cta:hover {
  background: var(--mauve);
  color: var(--bone);
}
.privacy-foot {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 14px 24px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--warm);
  background: linear-gradient(transparent, var(--bone) 40%);
  pointer-events: none;
  z-index: 5;
}
