:root {
  --bg: #070507;
  --bg-2: #141016;
  --fg: #faf7f8;
  --muted: #c9bcc2;
  --pink: #ff2d7a;
  --pink-soft: #ff8aaf;
  --pink-deep: #c41555;
  --card: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.12);
  --font-sans: "Sora", system-ui, sans-serif;
  --font-display: "Bodoni Moda", "Times New Roman", serif;
  --radius: 8px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  background:
    radial-gradient(1100px 640px at 85% -8%, rgba(255, 45, 122, 0.16), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 48%, var(--bg) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--pink-soft); text-decoration: none; }
a:hover { color: #fff; }
body.age-locked { overflow: hidden; }
.site-wrap { position: relative; z-index: 1; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #f7f3f5;
  color: #161216;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.age-card {
  width: min(480px, 100%);
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.4rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}
.age-card .brand-logo {
  display: block;
  width: min(360px, 88%);
  height: auto;
  margin: 0 auto 1.1rem;
}
.age-card h1 {
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  margin: 0 0 0.7rem;
}
.age-text { color: #5c5258; font-size: 0.95rem; }
.age-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin: 1.2rem 0 0.4rem;
}
.age-form label { display: grid; gap: 0.3rem; text-align: left; font-size: 0.72rem; font-weight: 600; }
.age-form select, .age-form button {
  width: 100%;
  border: 1px solid #e4d8de;
  border-radius: var(--radius);
  padding: 0.7rem 0.45rem;
  font: inherit;
  background: #fff;
}
.age-form button {
  grid-column: 1 / -1;
  background: #161216;
  color: #fff;
  border-color: #161216;
  cursor: pointer;
  font-weight: 600;
  margin-top: 0.3rem;
}
.age-form button:hover { background: var(--pink); border-color: var(--pink); }
.age-error { color: #b00020; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
  padding: 0.35rem 0.85rem 0.35rem 0.4rem;
  position: sticky;
  top: 0.75rem;
  z-index: 40;
  width: fit-content;
  max-width: calc(100% - 1.5rem);
  margin: 0.75rem auto;
  background: rgba(12, 8, 12, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}
.topbar-left { display: flex; align-items: center; gap: 0.85rem; }
.topbar-left a {
  display: block;
  line-height: 0;
}
.logo-img {
  height: auto;
  width: min(360px, 38vw);
  max-height: 64px;
}
.topbar-status {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3dff9a;
  margin-right: 0.35rem;
}
.nav-links { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.nav-links a {
  color: #fff;
  font-size: 0.82rem;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.nav-links a:hover {
  border-color: rgba(255, 45, 122, 0.45);
  background: rgba(255, 45, 122, 0.16);
  color: #fff;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(8, 4, 8, 0.62);
  backdrop-filter: blur(2px);
  border: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.nav-backdrop[hidden] {
  display: none !important;
}
body.nav-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(320px, 86vw);
  height: 100%;
  margin: 0;
  padding: 1.1rem 1rem 1.5rem;
  background: linear-gradient(180deg, #1a1216 0%, #120e11 100%);
  border-left: 1px solid var(--line);
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.4);
  transform: translateX(105%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body.nav-open .nav-drawer {
  transform: translateX(0);
}
.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
}
.nav-drawer-head strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-drawer-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.nav-drawer-close:hover {
  border-color: var(--pink-soft);
  color: var(--pink-soft);
}
.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.nav-drawer-links a {
  display: block;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  border: 1px solid transparent;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.nav-drawer-links a:hover,
.nav-drawer-links a:focus-visible {
  background: rgba(255, 45, 122, 0.14);
  border-color: rgba(255, 45, 122, 0.4);
  outline: none;
}
body.nav-open {
  overflow: hidden;
}

.hero {
  display: grid;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 1.15fr 0.85fr; min-height: 72vh; }
}
.hero-media {
  min-height: 48vh;
  background:
    linear-gradient(90deg, transparent 72%, var(--bg) 100%),
    var(--hero) center 22% / cover no-repeat;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) {
  .hero-media { min-height: auto; border-bottom: 0; border-right: 1px solid var(--line); }
}
.hero-panel {
  padding: 2.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(10, 8, 10, 0.55);
}
.hero-kicker {
  margin: 0 0 0.6rem;
  color: var(--pink-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
}
.hero-title {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
}
.hero-title .accent { color: var(--pink); }
.hero-tag { margin: 0 0 1.4rem; color: var(--muted); }
.hero-tag strong { color: #fff; font-weight: 600; }
.hero-cta, .btn, .social-go {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: #fff !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  padding: 0.85rem 1.15rem;
  box-shadow: 0 10px 28px rgba(255, 45, 122, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.hero-cta:hover, .btn:hover, .social-card:hover .social-go {
  color: #fff !important;
  filter: brightness(1.08);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(255, 45, 122, 0.42);
}

.today-section { padding-top: 2.2rem; padding-bottom: 1.2rem; }
.today-card {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
  background: linear-gradient(145deg, rgba(255, 45, 122, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  padding: 1.1rem;
}
@media (min-width: 760px) {
  .today-card.has-photo {
    grid-template-columns: minmax(220px, 0.9fr) 1.1fr;
    padding: 0;
    gap: 0;
  }
  .today-card.has-photo .today-copy { padding: 1.6rem 1.7rem; }
}
.today-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #1a1218;
}
.today-card.has-photo .today-photo {
  border-radius: 0;
  aspect-ratio: auto;
  min-height: 280px;
  max-height: 420px;
}
.today-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.today-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  margin-bottom: 0.35rem;
}
.today-live {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #3dde8c;
  box-shadow: 0 0 0 0 rgba(61, 222, 140, 0.55);
  animation: today-pulse 1.8s ease-out infinite;
}
@keyframes today-pulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 222, 140, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(61, 222, 140, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 222, 140, 0); }
}
.today-meta .section-kicker { margin: 0; }
.today-stamp {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.today-copy h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
}
.today-text p {
  margin: 0 0 0.55rem;
  color: var(--muted);
  max-width: 42ch;
  line-height: 1.55;
}
.today-text p:last-child { margin-bottom: 0; }
.today-cta {
  display: inline-flex;
  margin-top: 1.15rem;
  color: var(--pink-soft) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.today-cta:hover { color: #fff !important; }

.section { max-width: var(--max); margin: 0 auto; padding: 3.2rem 1.2rem; }
.section-kicker {
  display: block;
  color: var(--pink-soft);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.section h2, .legal h1, .page-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  letter-spacing: 0.01em;
}
.page-back {
  margin: 2rem 0 0;
}
.page-back a {
  color: var(--pink-soft);
  text-decoration: none;
  font-weight: 500;
}
.page-back a:hover { color: #fff; }
.draft-banner {
  margin: 0 auto;
  max-width: var(--max);
  padding: 0.7rem 1.2rem;
  background: rgba(255, 196, 72, 0.16);
  border-bottom: 1px solid rgba(255, 196, 72, 0.35);
  color: #f6d98a;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
}
.section-intro, .gallery-sub { color: var(--muted); margin: 0; max-width: 62ch; }

.social-grid { display: grid; gap: 0.85rem; margin-top: 1.4rem; }
.social-card {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 112px;
  padding: 0.85rem 1rem;
  color: inherit !important;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}
.social-card:hover {
  border-color: rgba(255, 45, 122, 0.7);
  transform: translateX(8px);
  box-shadow: 0 14px 36px rgba(255, 45, 122, 0.16);
  color: inherit !important;
}
.social-card:hover .social-icon-wrap { transform: scale(1.04); }
.social-icon-wrap {
  width: 240px;
  height: 84px;
  background: #fff;
  border-radius: 6px;
  display: grid;
  place-items: center;
  padding: 8px 12px;
  transition: transform 0.28s ease;
}
.social-icon { width: 100%; height: 100%; object-fit: contain; }
.social-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}
.social-card p { margin: 0.25rem 0 0.15rem; color: var(--muted); }
.social-url { font-size: 0.82rem; color: var(--pink-soft); }
.social-go { padding: 0.7rem 0.95rem; font-size: 0.82rem; text-transform: uppercase; }

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.strip figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  background: #111;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: clamp(76px, 9.5vw, 112px);
  grid-auto-flow: dense;
  gap: 0.45rem;
  margin-top: 1.2rem;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  height: 100%;
  min-height: 0;
  border-radius: var(--radius);
  background: #111;
}
/* Ciclo di 4: riempie rettangoli pieni, senza buchi */
.gallery-grid figure:nth-child(4n + 1) { grid-column: span 4; grid-row: span 4; }
.gallery-grid figure:nth-child(4n + 2) { grid-column: span 2; grid-row: span 2; }
.gallery-grid figure:nth-child(4n + 3) { grid-column: span 2; grid-row: span 2; }
.gallery-grid figure:nth-child(4n + 4) { grid-column: span 6; grid-row: span 6; }
/* Resto 1 foto: a tutta larghezza */
.gallery-grid figure:last-child:nth-child(4n + 1) {
  grid-column: 1 / -1;
  grid-row: span 4;
}
/* Resto 2 foto: due metà uguali */
.gallery-grid figure:nth-last-child(2):nth-child(4n + 1),
.gallery-grid figure:last-child:nth-child(4n + 2) {
  grid-column: span 3;
  grid-row: span 3;
}
.strip img, .gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#gallery .gallery-grid img {
  cursor: zoom-in;
  transition: transform 0.55s ease;
}
#gallery .gallery-grid figure:hover img { transform: scale(1.06); }
.gallery { max-width: 1240px; }

.about-panel, .spoil-box, .extra-box {
  margin-top: 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.25rem;
}
.about-line {
  margin: 0.2rem 0;
  font-style: normal;
  font-weight: 500;
  font-size: 1.12rem;
  line-height: 1.6;
  color: #f7f2f4;
}
.about-body, .spoil-box p, .spoil-box .spoil-text, .extra-box p, .section-intro, .gallery-sub, .hero-tag {
  color: #f4eef1;
  font-size: 1.08rem;
  line-height: 1.7;
}
.about-body { margin-top: 1rem; }
.about-body p, .extra-box p { margin: 0.45rem 0; }
.spoil-box { text-align: center; position: relative; overflow: hidden; }
.spoil-box p,
.spoil-box .spoil-text { max-width: none; margin: 0 auto 1rem; }
.spoil-box .spoil-text { color: #f4eef1; font-size: 1.08rem; line-height: 1.7; }
.spoil-box-has-bg {
  min-height: 280px;
  padding: 0;
  background-color: #1a1216;
}
.spoil-box-has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--spoil-bg);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.spoil-box-has-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 6, 8, 0.55) 0%, rgba(10, 6, 8, 0.72) 55%, rgba(10, 6, 8, 0.82) 100%);
}
.spoil-box-inner {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.25rem 1.35rem;
}
.spoil-box-has-bg .spoil-box-inner {
  padding: 2rem 1.35rem 1.75rem;
}
.spoil-box-has-bg .vault-teaser {
  border-top-color: rgba(255, 255, 255, 0.18);
}
.btn { margin: 0.4rem 0 1.1rem; text-transform: uppercase; font-size: 0.84rem; }
.mail { color: var(--pink-soft); }

.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.2rem 3rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.75rem;
  margin: 0;
}
.footer-row .mail {
  color: var(--pink-soft);
  text-decoration: none;
  font-weight: 500;
}
.footer-row .mail:hover { text-decoration: underline; }
.footer-sep { color: rgba(247, 241, 244, 0.35); }
.footer-copy { color: var(--muted); }
.footer-privacy {
  color: #fff;
  text-decoration: none;
  font-size: inherit;
}
.footer-privacy:hover { color: var(--pink-soft); }
.footer a { color: #fff; }

.cookie {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 1200;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  background: rgba(14, 10, 14, 0.96);
  color: #faf7f8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.95rem 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}
.cookie.is-hidden { display: none !important; }
.cookie strong { color: #fff; }
.cookie p { margin: 0.2rem 0 0; color: var(--muted); font-size: 0.9rem; }
.cookie a { color: var(--pink-soft); }
.cookie button {
  border: 0;
  background: var(--pink);
  color: #fff;
  border-radius: var(--radius);
  padding: 0.75rem 1.1rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.cookie button:hover { transform: translateY(-2px); filter: brightness(1.08); }

.zoom {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  background: rgba(6, 4, 6, 0.92);
  padding: 3.5rem 4.5rem;
}
.zoom[hidden] { display: none !important; }
.zoom img {
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 5rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  animation: zoom-in 0.28s ease;
}
@keyframes zoom-in {
  from { transform: scale(0.92); opacity: 0.4; }
  to { transform: none; opacity: 1; }
}
.zoom-close, .zoom-nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font: inherit;
  transition: background 0.2s ease, transform 0.2s ease;
}
.zoom-close {
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 1.6rem;
  line-height: 1;
}
.zoom-nav {
  top: 50%;
  width: 46px;
  height: 64px;
  border-radius: 8px;
  font-size: 2rem;
  transform: translateY(-50%);
}
.zoom-prev { left: 0.8rem; }
.zoom-next { right: 0.8rem; }
.zoom-close:hover, .zoom-nav:hover { background: var(--pink); }
.zoom-nav:hover { transform: translateY(-50%) scale(1.06); }
body.zoom-open { overflow: hidden; }

.legal { max-width: 760px; margin: 0 auto; padding: 2rem 1.2rem 4rem; }
.legal-body { color: #f4eef1; font-size: 1.05rem; line-height: 1.7; }
.legal-body h2 { color: #fff; font-size: 1.15rem; margin-top: 1.8rem; }
.legal-body h3 { color: var(--pink-soft); font-size: 1rem; }
.legal-body strong { color: #fff; }

/* ---- Private vault ---- */
.vault-section { max-width: 920px; }
.vault-unlock, .vault-pack-list { margin-top: 1.2rem; }
.vault-pack-list { display: grid; gap: 0.75rem; }
.vault-pack-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit !important;
  text-decoration: none;
}
.vault-pack-card strong { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; }
.vault-pack-card span { color: var(--pink-soft); font-weight: 600; }
.vault-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
  max-width: 360px;
}
.vault-form label { display: grid; gap: 0.35rem; font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.vault-form input {
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #120e11;
  color: #fff;
  font: inherit;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.vault-form input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 45, 122, 0.2);
}
.hint-vault { color: var(--muted); font-size: 0.92rem; margin: 0.75rem 0 0; max-width: 42ch; }
.vault-error {
  color: #ffb4b4;
  background: rgba(180, 35, 24, 0.18);
  border: 1px solid rgba(255, 120, 120, 0.35);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
}
.vault-price { margin: 0 0 0.5rem; }
.vault-protected {
  -webkit-user-select: none;
  user-select: none;
}
.vault-protected img {
  pointer-events: none;
  -webkit-user-drag: none;
}
.vault-videos { display: grid; gap: 1rem; margin-bottom: 1.2rem; }
.vault-video {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  border: 1px solid var(--line);
}
.vault-video video {
  display: block;
  width: 100%;
  max-height: 72vh;
  background: #000;
}
.vault-stack {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 0;
}
.vault-shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
  line-height: 0;
}
.vault-shot img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}
.vault-lock-form { margin-top: 1.4rem; }
.btn-side-vault {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 10px;
  padding: 0.55rem 0.9rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.btn-side-vault:hover { color: #fff; border-color: var(--pink-soft); }
.vault-teaser {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.vault-teaser p { margin: 0 0 0.75rem; color: #f4eef1; }


@media (max-width: 760px) {
  .topbar {
    width: calc(100% - 1.2rem);
    max-width: none;
    margin: 0.55rem auto;
    top: 0.45rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    padding: 0.35rem 0.45rem 0.35rem 0.35rem;
  }
  .topbar-left { justify-content: flex-start; min-width: 0; }
  .topbar-status { display: none; }
  .logo-img { width: min(220px, 58vw); max-height: 48px; }
  .nav-links-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .social-card {
    grid-template-columns: 1fr;
    transform: none;
  }
  .social-card:hover { transform: none; }
  .social-icon-wrap {
    width: 100%;
    height: auto;
    padding: 16px 20px;
  }
  .social-icon {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .social-go { display: none; }
  .strip { grid-template-columns: 1fr; max-width: 420px; }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    grid-auto-flow: row;
    gap: 0.4rem;
  }
  .gallery-grid figure,
  .gallery-grid figure:nth-child(n),
  .gallery-grid figure:last-child:nth-child(4n + 1),
  .gallery-grid figure:nth-last-child(2):nth-child(4n + 1),
  .gallery-grid figure:last-child:nth-child(4n + 2) {
    grid-column: span 1;
    grid-row: span 1;
    height: auto;
    aspect-ratio: 3 / 4;
  }
  .gallery-grid figure:nth-child(3n + 1),
  .gallery-grid figure:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    aspect-ratio: 3 / 4;
  }
  .cookie { flex-direction: column; align-items: stretch; }
  .hero-media {
    background: linear-gradient(180deg, transparent 60%, var(--bg) 100%), var(--hero) center 20% / cover no-repeat;
  }
}
