/**
 * AUTO-GENERATED FILE — DO NOT EDIT BY HAND.
 *
 * Generated by public/www/build/generate-shell-css.mjs from
 * public/v2-styles.css: the "pvx-" namespace (the shared
 * header/footer chrome the static /artwork and /collections pages clone
 * from the v2 React app) plus the ".pv-card" family (the Werkkarte
 * glass-tile look the same pages' gallery tiles reuse — see T22). Changes
 * belong in public/v2-styles.css; re-run `npm run www:shellcss` (or
 * `npm run www:build`) to regenerate this file.
 */

.pv-card,
.pvx-about,
.pvx-faq,
.pvx-footer,
.pvx-nav,
.pvx-newsletter,
.pvx-proof,
.pvx-socials-teaser {
  --pv-fg: #f4efe6;
  --pv-muted: #b9b1a6;
  --pv-accent: #e8b15a;
  --pv-card-radius: 14px;
}

.pv-card .pv3d__stage {
  width: 100%;
}
.pv-card .pv3d {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.32),
    0 8px 30px rgba(0, 0, 0, 0.45);
}
.pv-card__plate {
  position: relative;
  border-radius: var(--pv-card-radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}
.pv-card__plate::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.pv-card {
  display: block;
  text-decoration: none;
  color: inherit;
  
  content-visibility: visible;
  contain-intrinsic-size: auto;
}
.pv-card img {
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
  display: block;
}
.pv-card__meta {
  padding: 0.75rem 0.4rem 0.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--pv-fg);
  
  height: calc(2.7em + 0.85rem);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}
.pv-card__meta span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
}




.pvx-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2rem;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.pvx-nav.is-solid {
  background: rgba(7, 6, 11, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.pvx-nav__brand {
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--pv-fg);
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.pvx-nav__logo {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  object-fit: cover;
}

.pvx-nav__right {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.pvx-nav__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.pvx-nav__links a {
  color: var(--pv-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.pvx-nav__links a:hover {
  color: var(--pv-fg);
}
.pvx-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.pvx-nav__cta {
  background: var(--pv-accent);
  color: #1a1206 !important;
  font-weight: 700;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
}

.pvx-nav__links-cta {
  display: none;
}

.pvx-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.pvx-nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--pv-fg);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.pvx-nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pvx-nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.pvx-nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 640px) {
  .pvx-nav { padding: 0.7rem 1.1rem; }
  .pvx-nav__toggle { display: flex; }
  
  .pvx-nav__links {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(7, 6, 11, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1.1rem 1rem;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
  }
  .pvx-nav__links.is-open {
    display: flex;
  }
  .pvx-nav__links a {
    padding: 0.9rem 0.2rem;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .pvx-nav__cta {
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 400px) {
  
  .pvx-nav__cta {
    display: none;
  }
  .pvx-nav__links-cta {
    display: block;
    margin-top: 0.6rem;
    text-align: center;
    background: var(--pv-accent);
    color: #1a1206 !important;
    font-weight: 700;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border-bottom: none !important;
  }
}


.pvx-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}
.pvx-proof__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.pvx-proof__n {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  color: var(--pv-fg);
}
.pvx-proof__l {
  color: var(--pv-muted);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}


.pvx-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 820px;
}
.pvx-faq__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0 1.2rem;
}
.pvx-faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 0;
  font-weight: 600;
  color: var(--pv-fg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pvx-faq__item summary::-webkit-details-marker { display: none; }
.pvx-faq__item summary::after {
  content: "+";
  color: var(--pv-accent);
  font-size: 1.3rem;
  line-height: 1;
}
.pvx-faq__item[open] summary::after { content: "–"; }
.pvx-faq__item p {
  margin: 0 0 1.1rem;
  color: var(--pv-muted);
  line-height: 1.6;
  max-width: 70ch;
}


.pvx-footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.3);
}
.pvx-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.pvx-footer__name {
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--pv-fg);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.pvx-footer__logo {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  object-fit: cover;
  vertical-align: middle;
}
.pvx-footer__brand p {
  color: var(--pv-muted);
  max-width: 36ch;
  margin: 0.6rem 0 0;
  line-height: 1.6;
}
.pvx-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pvx-footer__links a {
  color: var(--pv-muted);
  text-decoration: none;
}
.pvx-footer__links a:hover { color: var(--pv-fg); }
.pvx-footer__col-title {
  font-weight: 700;
  color: var(--pv-fg);
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.pvx-footer__collections-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1.5rem;
}
@media (max-width: 640px) {
  .pvx-footer__collections-grid { grid-template-columns: 1fr; }
}
.pvx-footer__bottom {
  text-align: center;
  color: var(--pv-muted);
  font-size: 0.8rem;
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.pvx-footer__bottom a {
  color: var(--pv-muted);
  text-decoration: none;
}
.pvx-footer__bottom a:hover { color: var(--pv-fg); }
.pvx-footer__sep { margin: 0 0.5rem; opacity: 0.5; }


.pvx-about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.pvx-about__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.6rem;
}
.pvx-about__card h3 {
  margin: 0 0 0.5rem;
  color: var(--pv-fg);
  font-size: 1.05rem;
}
.pvx-about__card p {
  margin: 0;
  color: var(--pv-muted);
  line-height: 1.6;
}


.pvx-socials-teaser {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.pvx-socials-teaser__eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--pv-accent);
  margin: 0 0 0.8rem;
}
.pvx-socials-teaser .pv-section__title {
  margin-bottom: 0.6rem;
}


.pvx-newsletter {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.pvx-about__eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--pv-accent);
  margin: 0 0 0.8rem;
}
.pvx-newsletter__eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--pv-accent);
  margin: 0 0 0.8rem;
}
.pvx-newsletter .pv-section__title {
  margin-bottom: 0.6rem;
}
.pvx-newsletter__form {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.6rem;
}
.pvx-newsletter__input {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--pv-fg);
  font-size: 0.95rem;
}
.pvx-newsletter__input:focus {
  outline: none;
  border-color: var(--pv-accent);
}
.pvx-newsletter__success {
  margin-top: 1.6rem;
  color: var(--pv-accent);
  font-weight: 500;
}
.pvx-newsletter__error {
  margin-top: 0.9rem;
  color: var(--pv-muted);
  font-size: 0.88rem;
}
@media (max-width: 520px) {
  .pvx-newsletter__form {
    flex-direction: column;
  }
}
@media (min-width: 1440px) {
  .pvx-proof {
    max-width: 1420px;
  }
}
@media (min-width: 1600px) {
  .pvx-proof {
    max-width: 1560px;
  }
}
@media (min-width: 2000px) {
  .pvx-proof {
    max-width: 1800px;
  }
}


.pv-card__meta {
  transition: background 0.28s ease, border-color 0.28s ease;
  border-top: 1px solid transparent;
}
.pv-card:hover .pv-card__meta {
  background: rgba(8, 7, 14, 0.84);
  backdrop-filter: blur(10px) saturate(1.4);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  border-top-color: rgba(232, 177, 90, 0.16);
}




.pv-card {
  position: relative;
  margin: 0;
  padding: 10px 10px 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.075) 0%,
      rgba(255, 255, 255, 0.022) 42%,
      rgba(255, 255, 255, 0.05) 100%
    );
  
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -1px 0 rgba(0, 0, 0, 0.42),
    0 20px 46px rgba(0, 0, 0, 0.55);
}


.pv-card .pv3d,
.pv-card .pv3d img,
.pv-card img {
  border-radius: 13px;
}


.pv-card__meta {
  position: static;
  margin: 0;
  padding: 0.7rem 0.4rem 0.75rem;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: 0;
  box-shadow: none;
  align-items: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.pv-card:hover {
  border-color: rgba(232, 177, 90, 0.30);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(0, 0, 0, 0.42),
    0 26px 56px rgba(0, 0, 0, 0.62);
}

.pv-card:hover .pv-card__meta {
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top-color: transparent;
}





.pv-card .pv3d__spot {
  opacity: 0.3 !important;
}
.pv-card:hover .pv3d__spot {
  opacity: 0.44 !important;
}


.pv-card {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.075) 0%,
      rgba(255, 255, 255, 0.022) 44%,
      rgba(232, 177, 90, 0.065) 100%
    );
}



.pv-card {
  padding: 0;
}

.pv-card .pv3d,
.pv-card .pv3d img,
.pv-card img {
  border-radius: 0;
}

.pv-card__meta {
  padding: 0.72rem 0.6rem 0.78rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.pv-card:hover .pv-card__meta {
  box-shadow: inset 0 1px 0 rgba(232, 177, 90, 0.26);
}



.pv-card {
  border-radius: 24px;
}

.pv-card .pv3d {
  border-radius: 10px;
}

.pv-card .pv3d img,
.pv-card img {
  border-radius: 0;
}
