/* Specimen Pane — full-bleed photo + overlapping glass card
   Young Serif + Nunito — distinct from shop/cart */

body.pr-prism *,
body.pr-prism *::before,
body.pr-prism *::after { box-sizing: border-box; }

body.pr-prism {
  --void: #1C110D;
  --soil: #2A1A14;
  --glass: rgba(48, 28, 20, 0.58);
  --mist: #F6EDE4;
  --mute: #C4A992;
  --clay: #E07A5F;
  --moss: #7BAF7B;
  --honey: #F0C27A;
  --line: rgba(255, 214, 170, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  margin: 0;
  min-height: 100vh;
  color: var(--mist);
  font-family: Nunito, system-ui, sans-serif;
  background-color: var(--void);
  background-image:
    radial-gradient(ellipse 50% 42% at 88% 8%, rgba(224, 122, 95, 0.14), transparent 50%),
    radial-gradient(ellipse 40% 35% at 8% 92%, rgba(123, 175, 123, 0.1), transparent 48%);
  -webkit-font-smoothing: antialiased;
}

.pr-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.pr-prism .page-main {
  flex: 1;
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.pr-pane { flex: 1; }

/* —— Strip mast —— */
.pr-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
  padding: 1rem 0 0.85rem;
  position: relative;
  z-index: 4;
}

.pr-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--mist);
  text-decoration: none;
  min-width: 0;
}

.pr-brand em {
  flex: 0 0 auto;
  font-style: normal;
  font-family: 'Young Serif', Georgia, serif;
  font-size: 0.72rem;
  padding: 0.32rem 0.5rem;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.pr-brand span {
  font-family: 'Young Serif', Georgia, serif;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pr-strip-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.28rem;
  padding: 0.28rem;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.pr-strip-links a {
  color: #EADFD4;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.pr-strip-links a:hover {
  background: var(--clay);
  color: var(--void);
}

.pr-bag {
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
}

.pr-bag.has-items {
  background: rgba(224, 122, 95, 0.22);
}

.pr-bag em {
  font-style: normal;
  min-width: 1.15rem;
  text-align: center;
  padding: 0.05rem 0.35rem;
  border-radius: 999px;
  background: var(--void);
  color: var(--honey);
  font-size: 0.7rem;
  font-weight: 800;
}

.pr-kicker {
  margin: 0 0 0.35rem;
  color: var(--honey);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.pr-stock {
  display: inline-block;
  margin: 0 0 0.45rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(123, 175, 123, 0.2);
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* Stage: photo + overlapping card */
.pr-stage {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: calc(100vh - 4.5rem);
  align-items: start;
}

.pr-bleed {
  position: sticky;
  top: 0;
  margin: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--soil);
}

.pr-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pr-ph {
  display: block;
  height: 100%;
  background:
    radial-gradient(circle at 35% 30%, rgba(224, 122, 95, 0.3), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(123, 175, 123, 0.2), transparent 45%),
    var(--soil);
}

.pr-specimen {
  position: relative;
  z-index: 2;
  margin: 2.2rem 1.15rem 2.4rem -3.2rem;
  padding: 1.45rem 1.4rem 1.55rem;
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(22px);
  border-radius: 2.2rem 0.8rem 1.9rem 1.15rem;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
  animation: pr-rise 0.55s var(--ease);
}

@keyframes pr-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.pr-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  color: var(--mute);
  font-size: 0.8rem;
}

.pr-crumb a {
  color: var(--honey);
  text-decoration: none;
  font-weight: 700;
}
.pr-crumb a:hover { color: var(--clay); }

.pr-specimen h1 {
  margin: 0;
  font-family: 'Young Serif', Georgia, serif;
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  font-weight: 400;
}

.pr-sku {
  margin: 0.35rem 0 0;
  color: var(--mute);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.pr-about {
  margin: 0.95rem 0 0;
  color: var(--mist);
  line-height: 1.55;
  font-size: 0.98rem;
}

.pr-chips {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pr-chip {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.4rem;
}

.pr-chip em {
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 800;
}

.pr-chip strong {
  font-size: 0.7rem;
  line-height: 1.15;
  max-width: 4.5rem;
  font-weight: 800;
}

.pr-chip-moss { background: var(--moss); color: var(--void); }
.pr-chip-clay { background: var(--clay); color: var(--void); }
.pr-chip-honey { background: var(--honey); color: var(--void); }

.pr-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 1.2rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 214, 170, 0.14);
}

.pr-price span {
  color: var(--mute);
  font-size: 0.82rem;
  font-weight: 700;
}

.pr-price strong {
  font-family: 'Young Serif', Georgia, serif;
  font-size: 1.75rem;
  color: var(--honey);
  font-weight: 400;
}

.pr-form { margin-top: 1rem; }

.pr-flash {
  margin: 0 0 0.7rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.85rem;
  background: rgba(224, 122, 95, 0.18);
  border: 1px solid rgba(224, 122, 95, 0.35);
  color: var(--mist);
  font-size: 0.9rem;
}

.pr-qty label {
  display: block;
  color: var(--mute);
  font-size: 0.76rem;
  margin-bottom: 0.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pr-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem;
  border-radius: 999px;
  background: var(--soil);
  border: 1px solid var(--line);
}

.pr-stepper button {
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 50%;
  background: rgba(48, 28, 20, 0.85);
  color: var(--mist);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

.pr-stepper button:hover {
  color: var(--honey);
  background: rgba(224, 122, 95, 0.2);
}

.pr-stepper input {
  width: 2.6rem;
  border: 0;
  background: transparent;
  color: var(--mist);
  text-align: center;
  font: inherit;
  font-weight: 800;
  -moz-appearance: textfield;
}

.pr-stepper input::-webkit-outer-spin-button,
.pr-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; }

.pr-line {
  display: flex;
  justify-content: space-between;
  margin: 0.9rem 0 1.05rem;
  color: var(--mute);
  font-size: 0.9rem;
}

.pr-line strong {
  color: var(--mist);
  font-size: 1.1rem;
  font-weight: 800;
}

.pr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  transition: filter 0.2s, border-color 0.2s, color 0.2s, background 0.2s;
}

.pr-btn-fill {
  width: 100%;
  background: linear-gradient(135deg, var(--clay), #c46248);
  color: var(--void);
}
.pr-btn-fill:hover {
  filter: brightness(1.06);
  color: var(--void);
}

.pr-btn-ghost {
  background: transparent;
  color: var(--mist);
  border: 1px solid var(--line);
}
.pr-btn-ghost:hover {
  border-color: var(--honey);
  color: var(--honey);
}

.pr-trust {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--mute);
  font-size: 0.86rem;
}

.pr-trust li {
  padding-left: 1rem;
  position: relative;
}

.pr-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--moss);
}

.pr-miss {
  max-width: 34rem;
  margin: 6vh auto 3rem;
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 2rem 0.9rem 1.8rem 1.1rem;
  backdrop-filter: blur(18px);
}

.pr-miss h1 {
  margin: 0;
  font-family: 'Young Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
}

.pr-miss p {
  color: var(--mute);
  margin: 0.55rem 0 0;
}

.pr-miss-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.15rem;
}

.pr-miss-actions .pr-btn {
  width: auto;
  min-width: 10rem;
}

/* Related oval river */
.pr-river {
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
  padding: 0.5rem 0 2.2rem;
}

.pr-river-head { margin-bottom: 1rem; }

.pr-river-head h2 {
  margin: 0;
  font-family: 'Young Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
}

.pr-river-track {
  display: flex;
  gap: 1.05rem;
  overflow-x: auto;
  padding: 0.35rem 0 0.85rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.pr-oval {
  flex: 0 0 8.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--mist);
  text-align: center;
  scroll-snap-align: start;
  transition: transform 0.2s;
}

.pr-oval:hover {
  transform: translateY(-3px);
  color: var(--mist);
}

.pr-oval-frame {
  width: 7.5rem;
  height: 9.2rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--soil);
  border: 2px solid rgba(255, 214, 170, 0.2);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
}

.pr-oval:nth-child(even) .pr-oval-frame {
  height: 8.4rem;
  border-color: rgba(123, 175, 123, 0.4);
}

.pr-oval-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}

.pr-oval:hover .pr-oval-frame img { transform: scale(1.05); }

.pr-oval strong {
  font-size: 0.82rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pr-oval em {
  font-style: normal;
  color: var(--honey);
  font-size: 0.82rem;
  font-weight: 800;
}

.pr-foot {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
  width: min(100% - 2rem, 1180px);
  margin: 0 auto 1.3rem;
  padding: 0.95rem 1.15rem;
  color: var(--mute);
  font-size: 0.86rem;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
}

.pr-foot a {
  color: var(--honey);
  text-decoration: none;
  font-weight: 700;
}
.pr-foot a:hover { color: var(--clay); }

@media (max-width: 980px) {
  .pr-stage { grid-template-columns: 1fr; min-height: 0; }

  .pr-bleed {
    position: relative;
    height: 52vw;
    min-height: 16rem;
    max-height: 26rem;
  }

  .pr-specimen {
    margin: -3rem 1rem 1.4rem;
    border-radius: 1.7rem;
  }
}

@media (max-width: 640px) {
  .pr-strip {
    width: min(100% - 1.4rem, 1180px);
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.75rem;
  }

  .pr-strip-links {
    border-radius: 1.15rem;
    justify-content: flex-start;
  }

  .pr-chip {
    width: 4.7rem;
    height: 4.7rem;
  }

  .pr-specimen {
    margin-left: 0.85rem;
    margin-right: 0.85rem;
    padding: 1.2rem 1.05rem 1.3rem;
  }

  .pr-river { width: min(100% - 1.4rem, 1180px); }
}

@media (prefers-reduced-motion: reduce) {
  .pr-specimen {
    animation: none !important;
  }
  .pr-oval,
  .pr-oval-frame img,
  .pr-btn {
    transition: none !important;
  }
}
