:root {
  --bg: #050505;
  --graphite: #10100f;
  --graphite-2: #171614;
  --line: rgba(255, 255, 255, .095);
  --line-strong: rgba(218, 191, 128, .34);
  --text: #f7f2e8;
  --muted: rgba(247, 242, 232, .68);
  --soft: rgba(247, 242, 232, .08);
  --gold: #c9a86a;
  --gold-2: #e4cf9c;
  --silver: #b8b7b1;
  --ink: #050505;
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 260px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0, rgba(255,255,255,.018) 1px, transparent 1px, transparent 120px),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 5, 5, .76);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(18px);
}
.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: max-content; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: transparent;
}
.brand-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: invert(1) brightness(1.12);
  opacity: .92;
}
.brand-text { display: grid; gap: 2px; }
.brand-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255,255,255,.92);
}
.brand-sub { font-size: 12px; color: rgba(228,207,156,.78); }
.top-links { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; justify-content: flex-end; }
.top-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
.top-link:hover { border-color: var(--line-strong); color: var(--text); background: rgba(201,168,106,.08); }

.flash-stack { padding-top: 18px; display: grid; gap: 10px; }
.flash {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  padding: 14px 16px;
  color: var(--text);
}
.flash-success { border-color: rgba(132, 210, 164, .35); }
.flash-error { border-color: rgba(255, 120, 120, .42); }

.hero { padding: 36px 0 18px; }
.hero-grid {
  min-height: calc(100svh - 136px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 30px;
  align-items: center;
}
.hero-copy { padding: 34px 0; }
.eyebrow {
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(46px, 7vw, 92px);
  line-height: .92;
  margin-bottom: 22px;
  font-weight: 670;
}
h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  margin-bottom: 14px;
  font-weight: 650;
}
.hero-lead, .lead {
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.55;
  max-width: 760px;
}
.hero-actions, .section-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-actions { justify-content: flex-start; margin-top: 28px; }
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-1px); border-color: var(--line-strong); }
.btn-primary {
  border-color: rgba(228,207,156,.42);
  background: linear-gradient(180deg, rgba(228,207,156,.22), rgba(201,168,106,.08));
}
.btn-ghost { color: rgba(255,255,255,.76); }
.btn-wide { width: 100%; margin-top: 18px; }
.btn:disabled { opacity: .62; cursor: wait; }

.hero-stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 540px;
  transform: perspective(1400px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform .2s ease;
}
.metal-plate {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(88%, 760px);
  aspect-ratio: 50 / 28;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: #050505;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.metal-plate::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
}
.map-lines span {
  position: absolute;
  height: 3px;
  background: rgba(247,242,232,.74);
  transform-origin: left center;
}
.map-lines span:nth-child(1) { width: 78%; left: 8%; top: 28%; transform: rotate(12deg); }
.map-lines span:nth-child(2) { width: 68%; left: 18%; top: 40%; transform: rotate(-18deg); }
.map-lines span:nth-child(3) { width: 70%; left: 13%; top: 58%; transform: rotate(7deg); }
.map-lines span:nth-child(4) { width: 54%; left: 28%; top: 72%; transform: rotate(-11deg); }
.map-lines span:nth-child(5) { width: 72%; left: 14%; top: 50%; transform: rotate(82deg); }
.map-lines span:nth-child(6) { width: 46%; left: 50%; top: 32%; transform: rotate(74deg); }
.plate-marker {
  position: absolute;
  left: 50%;
  top: 49%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  border: 4px solid rgba(247,242,232,.78);
  border-radius: 50%;
}
.plate-marker::after {
  content: "";
  position: absolute;
  inset: 16px;
  background: rgba(247,242,232,.82);
  border-radius: 50%;
}
.plate-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 38px;
  text-align: center;
  color: rgba(247,242,232,.62);
  font-size: 14px;
  letter-spacing: .18em;
}
.qr-chip {
  position: absolute;
  right: 20px;
  bottom: 32px;
  width: 190px;
  border: 1px solid rgba(228,207,156,.34);
  background: rgba(8,8,8,.88);
  padding: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.36);
}
.qr-chip span {
  width: 64px;
  height: 64px;
  display: block;
  margin-bottom: 12px;
  background:
    linear-gradient(90deg, #f6f0e5 8px, transparent 8px) 0 0 / 16px 16px,
    linear-gradient(#f6f0e5 8px, transparent 8px) 0 0 / 16px 16px,
    #050505;
}
.qr-chip strong { font-size: 14px; color: var(--gold-2); }

.section { padding: 54px 0; }
.section-tight { padding: 18px 0 42px; }
.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip-item {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.strip-item:last-child { border-right: 0; }
.strip-item span { color: var(--gold); font-size: 13px; }
.strip-item strong { font-size: 20px; }
.split {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 38px;
  align-items: start;
}
.style-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(118px, 1fr));
  gap: 12px;
}
.style-swatch {
  min-height: 220px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: #0a0a0a;
}
.style-swatch::before, .style-art::before {
  content: "";
  position: absolute;
  inset: 22px -30px;
  background:
    linear-gradient(18deg, transparent 43%, currentColor 44%, currentColor 46%, transparent 47%),
    linear-gradient(96deg, transparent 52%, currentColor 53%, currentColor 55%, transparent 56%),
    linear-gradient(154deg, transparent 38%, currentColor 39%, currentColor 42%, transparent 43%);
  opacity: .88;
}
.style-swatch span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: inherit;
  font-size: 14px;
}
.style-swatch.dark { color: #f7f2e8; background: #050505; }
.style-swatch.minimal { color: #050505; background: #f4f0e7; }
.style-swatch.skeleton { color: #050505; background: #fff; }
.style-swatch.coordinate { color: #d6bd83; background: #070707; }
.style-swatch.love { color: #f7ead5; background: #090606; }

.product-band { background: rgba(255,255,255,.018); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.product-tile {
  min-height: 260px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.025));
  overflow: hidden;
}
.product-tile::before {
  content: "";
  width: 74%;
  aspect-ratio: 50 / 28;
  border-radius: 7px;
  background: #f1eee6;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28), inset 0 -22px 48px rgba(0,0,0,.12);
}
.tag-round::before { width: 54%; border-radius: 50%; aspect-ratio: 1; }
.tag-keychain::before { width: 84%; aspect-ratio: 50 / 12; border-radius: 5px; }
.tag-pendant::before { width: 76%; aspect-ratio: 40 / 20; border-radius: 6px; }
.tag-army::before { border-radius: 7px; }
.product-tile span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 46px;
  color: rgba(255,255,255,.82);
}
.product-tile strong {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: var(--gold-2);
  font-size: 14px;
}

.footer {
  margin-top: 68px;
  padding: 30px 0 38px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: #050505;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.05fr 1.7fr .8fr;
  gap: 24px;
  align-items: start;
}
.footer-left { display: flex; align-items: flex-start; gap: 14px; }
.footer-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: invert(1) brightness(1.12);
}
.footer-brand { font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.86); margin-bottom: 6px; }
.footer-sub, .footer-label { color: rgba(255,255,255,.55); font-size: 13px; }
.footer-center { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 18px; padding-top: 4px; }
.footer-center a, .footer-mail { color: rgba(255,255,255,.66); font-size: 14px; }
.footer-center a:hover, .footer-mail:hover { color: var(--gold-2); }
.footer-right { text-align: right; }
.footer-label { margin-bottom: 6px; }

.generator-shell { padding: 34px 0 28px; }
.generator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: 24px;
  align-items: start;
}
.generator-form, .generator-preview, .memory-story, .memory-assets {
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022));
  box-shadow: var(--shadow);
}
.generator-form { padding: clamp(22px, 4vw, 42px); }
.form-header h1 { font-size: clamp(38px, 5vw, 64px); margin-bottom: 14px; }
.form-header p { color: var(--muted); font-size: 18px; line-height: 1.55; }
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 24px;
}
.field { display: grid; gap: 8px; color: rgba(255,255,255,.68); font-size: 13px; }
.field-full { grid-column: 1 / -1; }
.field input, .field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.22);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: rgba(228,207,156,.45); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.34); }
.field input[type="file"] { padding: 14px; color: rgba(255,255,255,.68); }
.location-picker {
  height: 300px;
  border: 1px solid rgba(255,255,255,.1);
  background: #d6d6d6;
  overflow: hidden;
}
.location-picker .leaflet-tile {
  filter: grayscale(1) contrast(1.16) brightness(.86);
}
.location-picker .leaflet-container,
.location-picker .leaflet-control-container { font-family: inherit; }
.location-picker .leaflet-control-zoom a,
.location-picker .leaflet-control-attribution {
  background: rgba(5,5,5,.84);
  color: rgba(247,242,232,.78);
  border-color: rgba(255,255,255,.12);
}
.location-picker .leaflet-marker-icon {
  filter: grayscale(1) contrast(1.2) drop-shadow(0 8px 18px rgba(0,0,0,.6));
}
.errorlist {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #ffc0b8;
  font-size: 13px;
}
.form-errors {
  border: 1px solid rgba(255,120,120,.35);
  background: rgba(255,80,80,.09);
  padding: 12px 14px;
  margin: 14px 0;
}
.choice-block { margin-top: 28px; }
.choice-title {
  color: var(--gold-2);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
}
.radio-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.radio-grid-five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.choice-card {
  position: relative;
  min-height: 150px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.026);
  cursor: pointer;
}
.choice-card input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.choice-card:has(input:checked) {
  border-color: rgba(228,207,156,.62);
  background: rgba(201,168,106,.08);
}
.choice-card strong { position: relative; z-index: 1; font-size: 13px; line-height: 1.25; }
.choice-art {
  position: relative;
  min-height: 78px;
  overflow: hidden;
  background: #080808;
  border: 1px solid rgba(255,255,255,.07);
}
.style-minimal, .style-skeleton { background: #f7f3e8; color: #050505; }
.style-premium_dark, .style-coordinate, .style-love { background: #050505; color: #f6f0e5; }
.style-coordinate { color: var(--gold); }
.product-art {
  display: grid;
  place-items: center;
}
.product-art::before {
  content: "";
  width: 82px;
  aspect-ratio: 50 / 28;
  border-radius: 5px;
  background: #f1eee6;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28), inset 0 -12px 26px rgba(0,0,0,.12);
}
.product-round_tag::before { width: 66px; border-radius: 50%; aspect-ratio: 1; }
.product-keychain::before { width: 94px; aspect-ratio: 50 / 12; border-radius: 4px; }
.product-pendant::before { width: 86px; aspect-ratio: 40 / 20; border-radius: 5px; }
.product-army_tag::before { border-radius: 5px; }
.consent-line {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255,255,255,.64);
  font-size: 13px;
  line-height: 1.5;
}
.consent-line a { color: var(--gold-2); }

.generator-preview {
  position: sticky;
  top: 100px;
  padding: 20px;
}
.preview-device {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --product-ratio: 50 / 28;
  min-height: 540px;
  position: relative;
  background: #080808;
  border: 1px solid rgba(228,207,156,.2);
  overflow: hidden;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform .2s ease;
  padding: 42px;
  display: grid;
  align-content: center;
}
.preview-map {
  position: relative;
  width: 100%;
  max-height: 320px;
  aspect-ratio: var(--product-ratio);
  border: 1px solid rgba(247,242,232,.2);
  background: #050505;
  overflow: hidden;
  align-self: center;
}
.preview-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity .24s ease;
}
.preview-map.is-loading img { opacity: .35; }
.preview-map.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.11), transparent),
    linear-gradient(18deg, transparent 45%, rgba(247,242,232,.16) 46%, rgba(247,242,232,.16) 48%, transparent 49%),
    #050505;
  background-size: 220px 100%, auto, auto;
  animation: preview-loading 1.15s linear infinite;
  pointer-events: none;
}
@keyframes preview-loading {
  from { background-position: -220px 0, 0 0, 0 0; }
  to { background-position: 220px 0, 0 0, 0 0; }
}
.preview-caption {
  position: relative;
  display: grid;
  gap: 8px;
  margin-top: 28px;
}
.preview-caption small { color: var(--gold-2); text-transform: uppercase; letter-spacing: .16em; }
.preview-caption strong { font-size: 30px; line-height: 1.05; }
.preview-caption em { font-style: normal; color: var(--muted); }
.export-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 14px; }
.export-list div {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
}
.export-list span { display: block; color: var(--gold); font-size: 12px; margin-bottom: 5px; }
.export-list strong { font-size: 14px; }

.memory-page { padding: 34px 0 24px; }
.memory-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: 24px;
  align-items: start;
}
.memory-story, .memory-assets { padding: clamp(22px, 4vw, 38px); }
.memory-story h1 { font-size: clamp(42px, 6vw, 74px); }
.memory-story time { display: block; color: var(--gold-2); margin-bottom: 18px; }
.story-text { color: rgba(255,255,255,.78); font-size: 20px; line-height: 1.65; }
.memory-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}
.memory-meta div {
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.025);
  padding: 13px;
}
.memory-meta span { display: block; color: rgba(255,255,255,.52); font-size: 12px; margin-bottom: 7px; }
.memory-meta strong { font-size: 14px; }
.memory-photo {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.1);
}
.memory-assets { display: grid; gap: 14px; }
.result-map-image {
  width: 100%;
  background: #050505;
  border: 1px solid rgba(247,242,232,.16);
}
.mockup-image {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  width: 100%;
  border: 1px solid rgba(255,255,255,.1);
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform .2s ease;
}
.asset-panel {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 12px;
  align-items: stretch;
}
.asset-preview, .asset-qr {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
  border: 1px solid rgba(255,255,255,.1);
}
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.download-grid a {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(228,207,156,.25);
  background: rgba(201,168,106,.06);
  color: var(--text);
  font-size: 14px;
}
.download-grid a:hover { border-color: rgba(228,207,156,.55); }

@media (max-width: 1040px) {
  .hero-grid, .generator-grid, .memory-grid, .split { grid-template-columns: 1fr; }
  .hero-grid { min-height: unset; }
  .hero-stage { min-height: 560px; }
  .generator-preview { position: static; }
  .style-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .topbar-inner { min-height: 72px; align-items: flex-start; padding: 12px 0; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-mark img { width: 34px; height: 34px; }
  .top-links { gap: 7px; }
  .top-link { min-height: 34px; padding: 0 10px; font-size: 12px; }
  .hero { padding-top: 18px; }
  .hero-stage { min-height: 460px; }
  .metal-plate { width: 92%; top: 46%; }
  .qr-chip { right: 0; bottom: 18px; }
  .intro-strip, .field-grid, .radio-grid, .radio-grid-five, .memory-meta, .asset-panel, .download-grid, .footer-inner {
    grid-template-columns: 1fr;
  }
  .strip-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .strip-item:last-child { border-bottom: 0; }
  .style-grid, .product-grid { grid-template-columns: 1fr; }
  .footer-center { justify-content: flex-start; }
  .footer-right { text-align: left; }
}


/* GRAVIUM Memories generator UX polish */
.address-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.btn-search {
  min-height: 54px;
  white-space: nowrap;
  border-color: rgba(228,207,156,.34);
  background: rgba(201,168,106,.08);
}

.field-hint {
  display: block;
  margin-top: 8px;
  color: rgba(247,242,232,.52);
  font-size: 12px;
  line-height: 1.45;
}

.field-hint[data-mode="ok"] { color: rgba(158, 226, 179, .86); }
.field-hint[data-mode="error"] { color: rgba(255, 178, 168, .9); }
.field-hint[data-mode="loading"] { color: rgba(228, 207, 156, .9); }

.location-picker {
  height: 360px;
  min-height: 360px;
  position: relative;
  isolation: isolate;
}

.location-picker .leaflet-container {
  width: 100%;
  height: 100%;
}

.technical-coordinates {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.16);
  padding: 12px 14px;
}

.technical-coordinates summary {
  cursor: pointer;
  color: rgba(228,207,156,.84);
  font-size: 13px;
}

.coordinates-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 14px;
}

.qr-extra {
  border: 1px solid rgba(228,207,156,.18);
  background: linear-gradient(180deg, rgba(201,168,106,.08), rgba(255,255,255,.018));
  padding: 16px;
}

.qr-extra p {
  margin: 0;
  color: rgba(247,242,232,.64);
  line-height: 1.55;
}

@media (max-width: 760px) {
  .address-search-row,
  .coordinates-grid {
    grid-template-columns: 1fr;
  }

  .location-picker {
    height: 300px;
    min-height: 300px;
  }

  .btn-search {
    width: 100%;
  }
}


/* Yandex map picker in generator */
.yandex-location-picker {
  overflow: hidden;
  border-color: rgba(228,207,156,.22);
  background: #111;
}


.yandex-location-picker [class*="controls-pane"],
.yandex-location-picker [class*="places-pane"],
.yandex-location-picker [class*="events-pane"] {
  font-family: inherit;
}

.map-fallback {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(247,242,232,.68);
  text-align: center;
  line-height: 1.5;
  background: rgba(255,255,255,.035);
}

/* Yandex API fallback message */
.map-unavailable {
  display: grid;
  place-items: center;
}

.map-fallback {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 26px;
  text-align: center;
  color: rgba(247,242,232,.68);
  background:
    radial-gradient(circle at 50% 30%, rgba(228,207,156,.09), transparent 42%),
    rgba(255,255,255,.025);
}

.map-fallback strong {
  color: #f7f2e8;
  font-size: 18px;
}

.map-fallback span {
  max-width: 420px;
  line-height: 1.55;
  font-size: 14px;
}


/* Better visual difference for map style cards */
.style-art.style-premium_dark { background:#050505; color:#f6f1e8; }
.style-art.style-minimal { background:#fbf8ef; color:#111; }
.style-art.style-skeleton { background:#fff; color:#050505; }
.style-art.style-coordinate { background:#070707; color:#e4cf9c; }
.style-art.style-love { background:#090606; color:#fff7ee; }

.style-art.style-coordinate::after {
  content:"";
  position:absolute;
  inset:18px;
  border:1px solid rgba(228,207,156,.42);
  opacity:.75;
}

.style-art.style-love::after {
  content:"♥";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  color:#fff7ee;
  font-size:26px;
  line-height:1;
}


/* ===== GRAVIUM Memories premium home hero ===== */
.hero-stage-premium {
  min-height: 620px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-stage-premium::before {
  content: "";
  position: absolute;
  inset: 28px 0;
  background:
    radial-gradient(circle at 54% 42%, rgba(228,207,156,.14), transparent 34%),
    radial-gradient(circle at 72% 64%, rgba(255,255,255,.06), transparent 32%);
  filter: blur(18px);
  opacity: .9;
  z-index: -2;
}

.hero-stage-premium::after {
  content: "";
  position: absolute;
  width: min(86%, 760px);
  height: 72%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%);
  border: 1px solid rgba(255,255,255,.075);
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 68px 68px,
    linear-gradient(0deg, rgba(255,255,255,.018) 1px, transparent 1px) 0 0 / 68px 68px,
    rgba(255,255,255,.015);
  box-shadow: 0 30px 110px rgba(0,0,0,.46);
  z-index: -1;
}

.hero-product-card {
  position: relative;
  width: min(84%, 660px);
  padding: 22px;
  border: 1px solid rgba(228,207,156,.22);
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
    radial-gradient(circle at 30% 0%, rgba(228,207,156,.11), transparent 40%),
    #070707;
  box-shadow:
    0 34px 120px rgba(0,0,0,.62),
    inset 0 1px 0 rgba(255,255,255,.08);
  transform: rotate(-3deg);
}

.hero-product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  color: rgba(247,242,232,.7);
}

.hero-product-top span {
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-product-top strong {
  color: rgba(255,255,255,.86);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-plate-mockup {
  position: relative;
  aspect-ratio: 50 / 28;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  background:
    linear-gradient(120deg, rgba(255,255,255,.08), rgba(255,255,255,.015) 38%, rgba(255,255,255,.095)),
    linear-gradient(180deg, #111, #050505);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.06),
    inset 0 -38px 80px rgba(0,0,0,.35);
}

.hero-plate-mockup::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  pointer-events: none;
}

.hero-plate-mockup::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(100deg, transparent 38%, rgba(255,255,255,.12), transparent 58%);
  transform: translateX(-35%) rotate(8deg);
  animation: heroMetalGlide 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroMetalGlide {
  0%, 100% { transform: translateX(-42%) rotate(8deg); opacity: .24; }
  50% { transform: translateX(28%) rotate(8deg); opacity: .42; }
}

.hero-plate-hole {
  position: absolute;
  left: 24px;
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(247,242,232,.38);
  background: radial-gradient(circle, rgba(0,0,0,.72) 0 38%, rgba(255,255,255,.08) 40%, transparent 70%);
  z-index: 3;
}

.hero-map-art {
  position: absolute;
  inset: 34px 48px 48px 78px;
  color: rgba(247,242,232,.78);
}

.hero-map-art .road {
  position: absolute;
  height: 3px;
  border-radius: 10px;
  background: currentColor;
  box-shadow: 0 0 12px rgba(247,242,232,.08);
  transform-origin: left center;
}

.hero-map-art .road-1 { width: 78%; left: 0; top: 20%; transform: rotate(12deg); }
.hero-map-art .road-2 { width: 82%; left: 6%; top: 52%; transform: rotate(-9deg); }
.hero-map-art .road-3 { width: 52%; left: 12%; top: 75%; transform: rotate(4deg); opacity: .72; }
.hero-map-art .road-4 { width: 62%; left: 42%; top: 14%; transform: rotate(78deg); opacity: .66; }
.hero-map-art .road-5 { width: 50%; left: 16%; top: 22%; transform: rotate(93deg); opacity: .46; }
.hero-map-art .road-6 { width: 44%; left: 56%; top: 66%; transform: rotate(-34deg); opacity: .58; }

.hero-map-art .block {
  position: absolute;
  border: 1px solid rgba(247,242,232,.28);
  background: rgba(247,242,232,.035);
}

.hero-map-art .block-1 { width: 68px; height: 42px; left: 8%; top: 35%; transform: rotate(10deg); }
.hero-map-art .block-2 { width: 48px; height: 58px; left: 34%; top: 12%; transform: rotate(-9deg); }
.hero-map-art .block-3 { width: 74px; height: 38px; right: 12%; top: 46%; transform: rotate(8deg); }
.hero-map-art .block-4 { width: 54px; height: 46px; right: 28%; bottom: 4%; transform: rotate(-13deg); }

.hero-map-marker {
  position: absolute;
  left: 54%;
  top: 49%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 4px solid rgba(247,242,232,.9);
  box-shadow:
    0 0 0 8px rgba(5,5,5,.76),
    0 0 34px rgba(228,207,156,.18);
  z-index: 4;
}

.hero-map-marker::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(247,242,232,.95);
}

.hero-plate-coords {
  position: absolute;
  left: 78px;
  right: 42px;
  bottom: 22px;
  text-align: center;
  color: rgba(247,242,232,.6);
  font-size: 13px;
  letter-spacing: .2em;
  z-index: 4;
}

.hero-file-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.hero-file-row span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.28);
  color: rgba(247,242,232,.72);
  font-size: 12px;
  letter-spacing: .14em;
}

.hero-qr-card {
  position: absolute;
  right: 6%;
  bottom: 72px;
  width: 184px;
  padding: 16px;
  border: 1px solid rgba(228,207,156,.34);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    rgba(6,6,6,.94);
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  z-index: 3;
}

.hero-qr-grid {
  width: 72px;
  height: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}

.hero-qr-grid i {
  display: block;
  background: #f6f0e5;
}

.hero-qr-card span {
  display: block;
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.hero-qr-card strong {
  color: rgba(255,255,255,.86);
  font-size: 15px;
}

.hero-floating-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(8,8,8,.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0,0,0,.34);
}

.hero-floating-note span {
  color: var(--gold);
  font-size: 12px;
}

.hero-floating-note strong {
  font-size: 13px;
  color: rgba(255,255,255,.78);
}

.hero-floating-note-a { left: 7%; top: 118px; }
.hero-floating-note-b { right: 12%; top: 96px; }

@media (max-width: 1040px) {
  .hero-stage-premium { min-height: 540px; }
  .hero-product-card { width: min(92%, 680px); }
  .hero-floating-note-a { left: 2%; }
  .hero-floating-note-b { right: 3%; }
}

@media (max-width: 760px) {
  .hero-stage-premium {
    min-height: 440px;
    margin-top: 8px;
  }

  .hero-stage-premium::after {
    width: 100%;
    height: 86%;
  }

  .hero-product-card {
    width: 96%;
    padding: 14px;
    transform: rotate(-2deg);
  }

  .hero-product-top {
    margin-bottom: 12px;
  }

  .hero-product-top strong {
    display: none;
  }

  .hero-map-art {
    inset: 24px 28px 42px 58px;
  }

  .hero-plate-hole {
    left: 18px;
    width: 26px;
    height: 26px;
  }

  .hero-map-marker {
    width: 42px;
    height: 42px;
    border-width: 3px;
  }

  .hero-plate-coords {
    left: 48px;
    right: 22px;
    bottom: 15px;
    font-size: 10px;
  }

  .hero-qr-card {
    right: 0;
    bottom: 28px;
    width: 142px;
    padding: 12px;
  }

  .hero-qr-grid {
    width: 54px;
    height: 54px;
    gap: 5px;
  }

  .hero-floating-note {
    display: none;
  }

  .hero-file-row span {
    min-height: 36px;
    font-size: 11px;
  }
}


/* ===== Real photo hero for GRAVIUM Memories ===== */
.hero-stage-photo {
  min-height: 620px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-stage-photo::before {
  content: "";
  position: absolute;
  inset: 60px 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(228,207,156,.18), transparent 34%),
    radial-gradient(circle at 72% 68%, rgba(255,255,255,.08), transparent 30%);
  filter: blur(24px);
  opacity: .9;
  z-index: -2;
}

.hero-photo-card {
  position: relative;
  width: min(92%, 760px);
  aspect-ratio: 1535 / 1024;
  overflow: hidden;
  border: 1px solid rgba(228,207,156,.26);
  background: #050505;
  box-shadow:
    0 38px 120px rgba(0,0,0,.66),
    inset 0 1px 0 rgba(255,255,255,.08);
  transform: rotate(-2deg);
}

.hero-photo-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.08);
  z-index: 2;
  pointer-events: none;
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) brightness(.9) saturate(.82);
  transform: scale(1.035);
}

.hero-photo-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.16), transparent 34%, rgba(0,0,0,.22)),
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.38));
  z-index: 1;
  pointer-events: none;
}

.hero-photo-badge {
  position: absolute;
  z-index: 3;
  min-width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(228,207,156,.32);
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 70px rgba(0,0,0,.42);
}

.hero-photo-badge span {
  display: block;
  color: var(--gold-2);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-photo-badge strong {
  color: rgba(255,255,255,.88);
  font-size: 15px;
}

.hero-photo-badge-top {
  left: 28px;
  top: 28px;
}

.hero-photo-badge-bottom {
  right: 28px;
  bottom: 28px;
}

@media (max-width: 1040px) {
  .hero-stage-photo {
    min-height: 560px;
  }

  .hero-photo-card {
    width: min(96%, 760px);
  }
}

@media (max-width: 760px) {
  .hero-stage-photo {
    min-height: 390px;
  }

  .hero-photo-card {
    width: 100%;
    transform: rotate(-1deg);
  }

  .hero-photo-badge {
    min-width: 150px;
    padding: 11px 12px;
  }

  .hero-photo-badge-top {
    left: 14px;
    top: 14px;
  }

  .hero-photo-badge-bottom {
    right: 14px;
    bottom: 14px;
  }

  .hero-photo-badge strong {
    font-size: 13px;
  }
}


/* ===== Home lower premium polish ===== */
.home-steps-section {
  padding-top: 8px;
  padding-bottom: 34px;
}

.home-steps {
  border: 1px solid rgba(255,255,255,.085);
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
    rgba(0,0,0,.18);
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
}

.home-step {
  min-height: 126px;
  position: relative;
  overflow: hidden;
}

.home-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(228,207,156,.12), transparent 34%),
    linear-gradient(90deg, rgba(255,255,255,.035), transparent);
  opacity: 0;
  transition: opacity .22s ease;
}

.home-step:hover::before {
  opacity: 1;
}

.home-step span,
.home-step strong,
.home-step em {
  position: relative;
  z-index: 1;
}

.home-step em {
  color: rgba(247,242,232,.52);
  font-size: 14px;
  font-style: normal;
  line-height: 1.45;
}

.home-style-section {
  padding-top: 52px;
  padding-bottom: 72px;
}

.home-style-panel {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: center;
}

.home-section-copy {
  max-width: 470px;
}

.home-section-copy .btn {
  margin-top: 18px;
}

.home-style-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}

.home-style-grid .style-swatch {
  min-height: 250px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-color: rgba(255,255,255,.105);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    #080808;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.home-style-grid .style-swatch:hover {
  transform: translateY(-4px);
  border-color: rgba(228,207,156,.35);
  background:
    linear-gradient(180deg, rgba(228,207,156,.065), rgba(255,255,255,.018)),
    #080808;
}

.home-style-grid .style-swatch::before {
  inset: 28px -48px auto -24px;
  height: 150px;
  opacity: .9;
}

.home-style-grid .style-swatch span {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 1;
  color: inherit;
  font-size: 16px;
  font-weight: 700;
  margin-top: auto;
}

.home-style-grid .style-swatch em {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  color: rgba(247,242,232,.55);
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}

.home-style-grid .style-swatch.minimal em,
.home-style-grid .style-swatch.skeleton em {
  color: rgba(0,0,0,.55);
}

.home-products-section {
  padding-top: 70px;
  padding-bottom: 86px;
}

.home-products-head {
  align-items: end;
  margin-bottom: 24px;
}

.home-products-head .lead {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 18px;
}

.home-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-product-grid .product-tile {
  min-height: 310px;
  padding: 20px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 34%, rgba(255,255,255,.14), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.home-product-grid .product-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(228,207,156,.34);
  background:
    radial-gradient(circle at 50% 34%, rgba(228,207,156,.14), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.02));
}

.home-product-grid .product-tile::before {
  position: absolute;
  top: 60px;
  width: 68%;
  background:
    linear-gradient(145deg, #fffaf0, #b8b4aa);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.36),
    inset 0 -26px 54px rgba(0,0,0,.16),
    0 22px 60px rgba(0,0,0,.34);
}

.home-product-grid .tag-round::before {
  width: 48%;
}

.home-product-grid .tag-keychain::before {
  width: 76%;
}

.home-product-grid .tag-pendant::before {
  width: 68%;
}

.home-product-grid .product-tile span {
  bottom: 78px;
  font-size: 17px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
}

.home-product-grid .product-tile strong {
  bottom: 52px;
  font-size: 14px;
}

.home-product-grid .product-tile em {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 20px;
  color: rgba(247,242,232,.52);
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}

@media (max-width: 1040px) {
  .home-style-panel {
    grid-template-columns: 1fr;
  }

  .home-section-copy {
    max-width: 760px;
  }

  .home-style-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-steps {
    border-left: 1px solid rgba(255,255,255,.085);
    border-right: 1px solid rgba(255,255,255,.085);
  }

  .home-step {
    min-height: 108px;
  }

  .home-style-section,
  .home-products-section {
    padding-top: 42px;
    padding-bottom: 54px;
  }

  .home-style-grid,
  .home-product-grid {
    grid-template-columns: 1fr;
  }

  .home-style-grid .style-swatch {
    min-height: 190px;
  }

  .home-products-head {
    align-items: start;
  }

  .home-product-grid .product-tile {
    min-height: 270px;
  }
}


/* ===== Home description sections ===== */
.home-explain-section {
  padding-top: 34px;
  padding-bottom: 54px;
}

.home-explain-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 26px;
  align-items: stretch;
}

.home-explain-copy {
  border: 1px solid rgba(255,255,255,.09);
  background:
    radial-gradient(circle at 0% 0%, rgba(228,207,156,.09), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
}

.home-explain-copy h2 {
  max-width: 700px;
}

.home-explain-copy p:not(.lead) {
  color: rgba(247,242,232,.68);
  font-size: 18px;
  line-height: 1.65;
  max-width: 760px;
}

.home-explain-cards {
  display: grid;
  gap: 12px;
}

.explain-card {
  min-height: 158px;
  border: 1px solid rgba(255,255,255,.09);
  background:
    linear-gradient(90deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    rgba(0,0,0,.18);
  padding: 22px;
  display: grid;
  align-content: center;
  box-shadow: 0 20px 70px rgba(0,0,0,.18);
}

.explain-card span {
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.explain-card strong {
  color: var(--text);
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.explain-card p {
  color: rgba(247,242,232,.62);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.home-flow-section {
  padding-top: 48px;
  padding-bottom: 58px;
  border-top: 1px solid rgba(255,255,255,.065);
  border-bottom: 1px solid rgba(255,255,255,.065);
  background:
    radial-gradient(circle at 70% 20%, rgba(228,207,156,.055), transparent 34%),
    rgba(255,255,255,.012);
}

.home-flow-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 24px;
}

.home-flow-head h2 {
  margin-bottom: 0;
}

.home-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.flow-card {
  min-height: 230px;
  border: 1px solid rgba(255,255,255,.09);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.016));
  padding: 22px;
  display: grid;
  align-content: start;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.flow-card:hover {
  transform: translateY(-3px);
  border-color: rgba(228,207,156,.32);
  background:
    linear-gradient(180deg, rgba(228,207,156,.065), rgba(255,255,255,.018));
}

.flow-card b {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .14em;
  margin-bottom: 48px;
}

.flow-card strong {
  color: var(--text);
  font-size: 21px;
  line-height: 1.14;
  margin-bottom: 12px;
}

.flow-card p {
  color: rgba(247,242,232,.58);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

/* Чуть компактнее проблемный блок стилей, чтобы он не казался пустым */
.home-style-section {
  padding-top: 52px !important;
}

.home-style-panel {
  align-items: center !important;
}

.home-style-grid .style-swatch {
  min-height: 220px !important;
}

.home-style-grid .style-swatch span {
  font-size: 15px !important;
}

.home-style-grid .style-swatch em {
  font-size: 12px !important;
}

/* Лучше читаемость тёмных карточек минимализма после затемнения */
.home-style-grid .style-swatch.minimal,
.home-style-grid .style-swatch.skeleton {
  color: #111 !important;
  background: #f4f0e7 !important;
}

.home-style-grid .style-swatch.minimal span,
.home-style-grid .style-swatch.skeleton span {
  color: #111 !important;
}

.home-style-grid .style-swatch.minimal em,
.home-style-grid .style-swatch.skeleton em {
  color: rgba(0,0,0,.58) !important;
}

@media (max-width: 1040px) {
  .home-explain-grid {
    grid-template-columns: 1fr;
  }

  .home-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-flow-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .home-explain-section,
  .home-flow-section {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .home-flow-grid {
    grid-template-columns: 1fr;
  }

  .flow-card {
    min-height: 180px;
  }

  .flow-card b {
    margin-bottom: 28px;
  }

  .explain-card {
    min-height: 140px;
  }
}


/* GRAVIUM Memories premium detail/edit polish */
.memory-hero-page {
  padding: clamp(34px, 6vw, 82px) 0 34px;
}

.memory-premium-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 24px;
  align-items: stretch;
}

.memory-premium-card,
.memory-visual-stack,
.memory-production-card {
  border: 1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(circle at 18% 12%, rgba(228,207,156,.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022));
  box-shadow: var(--shadow);
}

.memory-premium-card {
  min-height: 620px;
  padding: clamp(26px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.memory-premium-card h1 {
  font-size: clamp(44px, 6vw, 86px);
  line-height: .95;
  margin-bottom: 18px;
}

.memory-date {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 22px;
  padding: 8px 12px;
  border: 1px solid rgba(228,207,156,.26);
  color: var(--gold-2);
  background: rgba(201,168,106,.06);
}

.premium-story {
  color: rgba(255,255,255,.8);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.65;
  max-width: 760px;
}

.muted-story {
  color: rgba(255,255,255,.54);
}

.premium-meta {
  margin-top: 30px;
}

.memory-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.memory-visual-stack {
  padding: clamp(18px, 3vw, 30px);
  display: grid;
  gap: 14px;
  align-content: start;
}

.premium-photo,
.premium-mockup,
.premium-asset-row img {
  width: 100%;
  border: 1px solid rgba(255,255,255,.1);
  background: #050505;
}

.premium-photo {
  max-height: 340px;
  object-fit: cover;
}

.premium-mockup {
  object-fit: contain;
}

.premium-asset-row {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 12px;
}

.premium-asset-row img {
  height: 180px;
  object-fit: contain;
}

.memory-production-section {
  padding: 24px 0 72px;
}

.memory-production-card {
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: center;
}

.production-downloads {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1040px) {
  .memory-premium-grid,
  .memory-production-card {
    grid-template-columns: 1fr;
  }
  .memory-premium-card {
    min-height: unset;
  }
}

@media (max-width: 760px) {
  .premium-asset-row,
  .production-downloads {
    grid-template-columns: 1fr;
  }
  .premium-asset-row img {
    height: auto;
  }
}


/* Owner/edit mode panel */
.owner-panel {
  margin: 22px 0 10px;
  padding: 18px;
  border: 1px solid rgba(228,207,156,.22);
  background:
    radial-gradient(circle at 0% 0%, rgba(228,207,156,.13), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.owner-panel span {
  display: block;
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.owner-panel strong {
  display: block;
  color: var(--text);
  font-size: 19px;
  margin-bottom: 8px;
}

.owner-panel p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.owner-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 760px) {
  .owner-panel {
    grid-template-columns: 1fr;
  }

  .owner-links {
    justify-content: stretch;
  }

  .owner-links .btn {
    width: 100%;
  }
}


/* Create page mode polish */
.generator-form {
  position: relative;
  overflow: hidden;
}

.generator-form::before,
.generator-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 0%, rgba(228,207,156,.10), transparent 30%),
    linear-gradient(120deg, rgba(255,255,255,.045), transparent 42%);
  opacity: .9;
}

.generator-form > *,
.generator-preview > * {
  position: relative;
  z-index: 1;
}

.generator-mode-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 16px;
}

.mode-card {
  min-height: 142px;
  text-align: left;
  border: 1px solid rgba(255,255,255,.105);
  background:
    linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.018));
  color: var(--text);
  padding: 18px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.mode-card:hover {
  transform: translateY(-1px);
  border-color: rgba(228,207,156,.34);
  background:
    radial-gradient(circle at 80% 0%, rgba(228,207,156,.09), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.022));
}

.mode-card.is-active {
  border-color: rgba(228,207,156,.58);
  background:
    radial-gradient(circle at 82% 0%, rgba(228,207,156,.17), transparent 36%),
    linear-gradient(180deg, rgba(201,168,106,.15), rgba(255,255,255,.025));
  box-shadow: 0 18px 54px rgba(0,0,0,.30), inset 0 0 0 1px rgba(228,207,156,.08);
}

.mode-kicker {
  display: block;
  color: var(--gold-2);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mode-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.08;
  margin-bottom: 10px;
}

.mode-card em {
  display: block;
  color: rgba(247,242,232,.62);
  font-style: normal;
  font-size: 14px;
  line-height: 1.45;
}

.mode-note {
  border: 1px solid rgba(228,207,156,.18);
  background: rgba(201,168,106,.055);
  color: rgba(247,242,232,.72);
  padding: 13px 15px;
  line-height: 1.5;
  font-size: 14px;
  margin-bottom: 20px;
}

.is-soft-hidden {
  opacity: .36;
  filter: grayscale(.25);
}

.memory-mode-active .is-soft-hidden {
  opacity: 1;
  filter: none;
}

.generator-preview {
  position: sticky;
  top: 94px;
  overflow: hidden;
}

.preview-device {
  background:
    radial-gradient(circle at 50% 0%, rgba(228,207,156,.10), transparent 34%),
    #050505;
  border: 1px solid rgba(228,207,156,.16);
}

.export-list div {
  background: rgba(0,0,0,.22);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.export-list div:hover {
  transform: translateY(-1px);
  border-color: rgba(228,207,156,.24);
  background: rgba(201,168,106,.055);
}

.qr-extra {
  border-color: rgba(228,207,156,.24);
  background:
    radial-gradient(circle at 100% 0%, rgba(228,207,156,.12), transparent 42%),
    linear-gradient(180deg, rgba(201,168,106,.09), rgba(255,255,255,.018));
}

@media (max-width: 860px) {
  .generator-mode-switch {
    grid-template-columns: 1fr;
  }

  .mode-card {
    min-height: auto;
  }

  .generator-preview {
    position: relative;
    top: auto;
  }
}


/* Quick mode real hiding */
.is-hidden-by-mode {
  display: none !important;
}

.quick-mode-active .qr-extra,
.quick-mode-active [data-memory-extra],
.quick-mode-active [data-title-field] {
  display: none !important;
}

/* Edit page owner panel polish + quick mode hiding */
.owner-panel {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 22px !important;
  align-items: center !important;
  width: 100% !important;
  margin: 22px 0 26px !important;
  padding: 22px !important;
  border: 1px solid rgba(228,207,156,.24) !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(228,207,156,.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022)) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.28) !important;
}

.owner-panel > div:first-child {
  max-width: none !important;
  width: 100% !important;
}

.owner-panel span {
  display: block !important;
  margin-bottom: 10px !important;
  color: var(--gold-2) !important;
  font-size: 12px !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
}

.owner-panel strong {
  display: block !important;
  max-width: 520px !important;
  color: var(--text) !important;
  font-size: clamp(22px, 2.3vw, 34px) !important;
  line-height: 1.05 !important;
  font-weight: 700 !important;
}

.owner-panel p {
  max-width: 560px !important;
  margin: 12px 0 0 !important;
  color: rgba(247,242,232,.68) !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.owner-links {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  min-width: 260px !important;
}

.owner-links .btn {
  width: 100% !important;
  white-space: normal !important;
  text-align: center !important;
}

.is-hidden-by-mode,
.quick-mode-active [data-title-field],
.quick-mode-active [data-memory-extra],
.quick-mode-active .qr-extra {
  display: none !important;
}

@media (max-width: 860px) {
  .owner-panel {
    grid-template-columns: 1fr !important;
  }

  .owner-links {
    min-width: 0 !important;
  }
}

/* FINAL edit quick mode + owner panel fix */
.generator-form.quick-mode-active [data-title-field],
.generator-form.quick-mode-active [data-memory-extra],
.generator-form.quick-mode-active .qr-extra {
  display: none !important;
}

.owner-panel {
  display: block !important;
  width: 100% !important;
  margin: 22px 0 28px !important;
  padding: 22px !important;
  border: 1px solid rgba(228,207,156,.24) !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(228,207,156,.12), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022)) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.28) !important;
  overflow: hidden !important;
}

.owner-panel > div:first-child {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

.owner-panel span {
  display: block !important;
  margin: 0 0 10px !important;
  color: var(--gold-2) !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
}

.owner-panel strong {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  color: var(--text) !important;
  font-size: clamp(24px, 3vw, 34px) !important;
  line-height: 1.05 !important;
  font-weight: 720 !important;
  text-wrap: balance !important;
}

.owner-panel p {
  display: block !important;
  max-width: 620px !important;
  margin: 14px 0 0 !important;
  color: rgba(247,242,232,.68) !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.owner-links {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  width: 100% !important;
  min-width: 0 !important;
  margin-top: 18px !important;
}

.owner-links .btn {
  width: 100% !important;
  min-height: 50px !important;
  padding: 0 14px !important;
  white-space: normal !important;
  text-align: center !important;
}

@media (max-width: 760px) {
  .owner-links {
    grid-template-columns: 1fr !important;
  }
}

/* Quick result page: no QR / no edit UX */
.quick-result-page .quick-result-card {
  background:
    radial-gradient(circle at 12% 0%, rgba(228,207,156,.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022));
}

.quick-downloads {
  margin-top: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quick-downloads a:first-child,
.quick-downloads a:nth-child(2) {
  border-color: rgba(228,207,156,.30);
}

.quick-only-map {
  grid-template-columns: 1fr !important;
}

.quick-only-map img {
  width: 100%;
}

/* Quick result page: no QR / no edit UX */
.quick-result-page .quick-result-card {
  background:
    radial-gradient(circle at 12% 0%, rgba(228,207,156,.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022));
}

.quick-downloads {
  margin-top: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quick-downloads a:first-child,
.quick-downloads a:nth-child(2) {
  border-color: rgba(228,207,156,.30);
}

.quick-only-map {
  grid-template-columns: 1fr !important;
}

.quick-only-map img {
  width: 100%;
}

/* FINAL quick result premium polish */
.quick-result-page {
  padding: clamp(28px, 5vw, 72px) 0;
}

.quick-result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
}

.quick-result-main,
.quick-result-visual {
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 18% 0%, rgba(228,207,156,.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022));
  box-shadow: var(--shadow);
}

.quick-result-main {
  padding: clamp(24px, 4vw, 44px);
}

.quick-result-main h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: .96;
  margin-bottom: 18px;
}

.quick-result-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.quick-result-meta div {
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(0,0,0,.22);
}

.quick-result-meta span,
.quick-download-head span {
  display: block;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.quick-result-meta strong,
.quick-download-head strong {
  color: rgba(247,242,232,.92);
  font-size: 15px;
  line-height: 1.35;
}

.quick-download-panel {
  border: 1px solid rgba(228,207,156,.18);
  background: linear-gradient(180deg, rgba(201,168,106,.08), rgba(255,255,255,.018));
  padding: 18px;
  margin-top: 22px;
}

.quick-download-head {
  margin-bottom: 14px;
}

.quick-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quick-download-grid a {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.24);
  color: var(--text);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.quick-download-grid a:hover {
  transform: translateY(-1px);
  border-color: rgba(228,207,156,.36);
  background: rgba(228,207,156,.08);
}

.quick-download-grid a span {
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: .14em;
}

.quick-download-grid a strong {
  font-size: 15px;
  line-height: 1.25;
}

.quick-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.quick-note {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
  color: rgba(247,242,232,.68);
  line-height: 1.55;
}

.quick-note strong {
  color: var(--gold-2);
}

.quick-result-visual {
  padding: clamp(18px, 3vw, 28px);
  position: sticky;
  top: 96px;
}

.quick-mockup {
  display: block;
  width: 100%;
  border: 1px solid rgba(255,255,255,.10);
  background: #050505;
  margin-bottom: 14px;
}

.quick-map-card {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.28);
}

.quick-map-card img {
  display: block;
  width: 100%;
}

@media (max-width: 960px) {
  .quick-result-grid {
    grid-template-columns: 1fr;
  }

  .quick-result-visual {
    position: relative;
    top: auto;
  }

  .quick-result-meta,
  .quick-download-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium style selector cards */
.premium-style-block {
  margin-top: 34px;
}

.premium-style-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.premium-style-card {
  min-height: 178px !important;
  padding: 12px !important;
  border: 1px solid rgba(255,255,255,.105) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(228,207,156,.07), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)) !important;
  overflow: hidden;
}

.premium-style-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.09), transparent 28%),
    linear-gradient(180deg, transparent 55%, rgba(0,0,0,.36));
  opacity: .72;
}

.premium-style-card:has(input:checked) {
  border-color: rgba(228,207,156,.78) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(228,207,156,.18), transparent 45%),
    linear-gradient(180deg, rgba(201,168,106,.13), rgba(255,255,255,.025)) !important;
  box-shadow:
    0 0 0 1px rgba(228,207,156,.16) inset,
    0 18px 52px rgba(0,0,0,.34);
}

.premium-style-card .choice-art {
  min-height: 74px;
  border: 1px solid rgba(255,255,255,.1);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.premium-style-card .choice-art::before,
.premium-style-card .choice-art::after,
.premium-style-card .choice-art i {
  content: "";
  position: absolute;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
  opacity: .95;
  transform-origin: left center;
}

.premium-style-card .choice-art::before {
  width: 78%;
  left: 9%;
  top: 58%;
  transform: rotate(-18deg);
}

.premium-style-card .choice-art::after {
  width: 70%;
  left: 22%;
  top: 34%;
  transform: rotate(22deg);
}

.premium-style-card .choice-art i:nth-child(1) {
  width: 54%;
  left: 28%;
  top: 50%;
  transform: rotate(86deg);
}

.premium-style-card .choice-art i:nth-child(2) {
  width: 42%;
  left: 8%;
  top: 35%;
  transform: rotate(14deg);
}

.premium-style-card .choice-art i:nth-child(3) {
  width: 48%;
  left: 42%;
  top: 70%;
  transform: rotate(-7deg);
}

.premium-style-card .style-kicker,
.premium-style-card strong,
.premium-style-card em {
  position: relative;
  z-index: 1;
  display: block;
}

.premium-style-card .style-kicker {
  color: rgba(228,207,156,.92);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.premium-style-card strong {
  font-size: 15px !important;
  line-height: 1.05 !important;
  color: rgba(247,242,232,.96);
}

.premium-style-card em {
  margin-top: 7px;
  font-style: normal;
  font-size: 11px;
  line-height: 1.32;
  color: rgba(247,242,232,.52);
}

.premium-style-minimal .choice-art {
  background: linear-gradient(135deg, #fbf8ef, #d9d2c4) !important;
  color: #111;
}

.premium-style-skeleton .choice-art {
  background: #f7f7f7 !important;
  color: #050505;
}

.premium-style-premium_dark .choice-art {
  background:
    radial-gradient(circle at 45% 20%, rgba(255,255,255,.1), transparent 38%),
    #050505 !important;
  color: #f6f1e8;
}

.premium-style-coordinate .choice-art {
  background:
    radial-gradient(circle at 68% 42%, rgba(228,207,156,.2), transparent 28%),
    #060606 !important;
  color: #e4cf9c;
}

.premium-style-coordinate .choice-art::before,
.premium-style-coordinate .choice-art::after,
.premium-style-coordinate .choice-art i {
  background: #e4cf9c;
}

.premium-style-love .choice-art {
  background:
    radial-gradient(circle at 50% 45%, rgba(255,230,210,.12), transparent 30%),
    #090606 !important;
  color: #fff2e4;
}

.premium-style-love .choice-art::after {
  width: 20px;
  height: 20px;
  left: 52%;
  top: 38%;
  border-radius: 50% 50% 45% 45%;
  background: #fff2e4;
  transform: rotate(45deg);
  box-shadow: -7px -7px 0 #fff2e4;
}

.premium-style-love .choice-art i:nth-child(1) {
  opacity: .45;
}

.premium-style-love .choice-art i:nth-child(2),
.premium-style-love .choice-art i:nth-child(3) {
  opacity: .75;
}

@media (max-width: 980px) {
  .premium-style-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .premium-style-grid {
    grid-template-columns: 1fr;
  }

  .premium-style-card {
    min-height: 154px !important;
  }
}


/* GRAVIUM PREMIUM MAP STYLE CARDS — clean rebuild */
.premium-style-block {
  margin-top: 30px !important;
}

.premium-style-block .choice-title {
  margin-bottom: 12px !important;
}

.premium-style-block .premium-style-grid.premium-style-text-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 10px !important;
  align-items: stretch !important;
}

.premium-style-block .premium-style-card,
.premium-style-block .premium-style-text-card,
.premium-style-block .premium-style-text-card:nth-child(5) {
  grid-column: auto !important;
  min-width: 0 !important;
  height: 176px !important;
  min-height: 176px !important;
  padding: 0 !important;
  position: relative !important;
  display: grid !important;
  grid-template-rows: 66px 17px 18px 23px 1fr !important;
  align-content: stretch !important;
  overflow: hidden !important;

  border: 1px solid rgba(255,255,255,.12) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.014)) !important;

  box-shadow: none !important;
  transform: none !important;
  cursor: pointer !important;
  transition:
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease,
    transform .22s ease !important;
}

.premium-style-block .premium-style-text-card > input {
  position: absolute !important;
  inset: 0 !important;
  opacity: 0 !important;
  cursor: pointer !important;
  z-index: 20 !important;
}

/* полностью убираем старые визуальные хвосты */
.premium-style-block .premium-style-text-card .choice-art,
.premium-style-block .premium-style-text-card .style-art,
.premium-style-block .premium-style-text-card i,
.premium-style-block .premium-style-text-card::after {
  display: none !important;
}

/* Верхняя премиальная плашка */
.premium-style-block .premium-style-text-card::before {
  content: "" !important;
  display: block !important;
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: 66px !important;
  opacity: 1 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
  transform: none !important;
  box-shadow: inset 0 -18px 34px rgba(0,0,0,.16) !important;
}

/* 01 Тёмная */
.premium-style-block .premium-style-text-card[data-style-value="premium_dark"]::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,.04) 35%, rgba(255,255,255,.18) 49%, rgba(255,255,255,.04) 63%, transparent 100%),
    radial-gradient(circle at 76% 26%, rgba(228,207,156,.18), transparent 26%),
    linear-gradient(135deg, #010101 0%, #1c1c1c 54%, #050505 100%) !important;
}

/* 02 Светлая */
.premium-style-block .premium-style-text-card[data-style-value="minimal"]::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,.36) 34%, rgba(255,255,255,.92) 51%, rgba(255,255,255,.24) 65%, transparent 100%),
    radial-gradient(circle at 76% 28%, rgba(228,207,156,.24), transparent 24%),
    linear-gradient(135deg, #fffaf0 0%, #d8d1c4 58%, #fff7ea 100%) !important;
}

/* 03 Контур */
.premium-style-block .premium-style-text-card[data-style-value="skeleton"]::before {
  background:
    linear-gradient(90deg, rgba(0,0,0,.15) 1px, transparent 1px) 0 0 / 17px 17px,
    linear-gradient(0deg, rgba(0,0,0,.10) 1px, transparent 1px) 0 0 / 17px 17px,
    linear-gradient(115deg, transparent 0%, rgba(0,0,0,.03) 38%, rgba(0,0,0,.09) 52%, rgba(0,0,0,.025) 66%, transparent 100%),
    linear-gradient(135deg, #ffffff 0%, #ededed 58%, #fafafa 100%) !important;
}

/* 04 Точка */
.premium-style-block .premium-style-text-card[data-style-value="coordinate"]::before {
  background:
    radial-gradient(circle at 78% 48%, rgba(228,207,156,.96) 0 3px, transparent 4px),
    radial-gradient(circle at 78% 48%, rgba(228,207,156,.22), transparent 30%),
    linear-gradient(115deg, transparent 0%, rgba(228,207,156,.04) 36%, rgba(228,207,156,.18) 52%, rgba(228,207,156,.04) 66%, transparent 100%),
    linear-gradient(135deg, #030303 0%, #141414 56%, #050505 100%) !important;
}

/* 05 Love */
.premium-style-block .premium-style-text-card[data-style-value="love"]::before {
  background:
    radial-gradient(circle at 78% 48%, rgba(247,214,198,.30), transparent 28%),
    linear-gradient(115deg, transparent 0%, rgba(255,220,210,.04) 36%, rgba(255,220,210,.18) 52%, rgba(255,220,210,.04) 66%, transparent 100%),
    linear-gradient(135deg, #080303 0%, #190909 58%, #050202 100%) !important;
}

/* Текстовая сетка внутри карточки */
.premium-style-block .premium-style-text-card .style-number,
.premium-style-block .premium-style-text-card .style-kicker,
.premium-style-block .premium-style-text-card strong,
.premium-style-block .premium-style-text-card em {
  display: block !important;
  position: relative !important;
  z-index: 2 !important;
  min-width: 0 !important;
  padding-left: 11px !important;
  padding-right: 11px !important;
}

.premium-style-block .premium-style-text-card .style-number {
  margin: 10px 0 0 !important;
  color: rgba(228,207,156,.48) !important;
  font-size: 9px !important;
  line-height: 1 !important;
  letter-spacing: .13em !important;
}

.premium-style-block .premium-style-text-card .style-kicker {
  margin: 0 !important;
  color: rgba(228,207,156,.78) !important;
  font-size: 8px !important;
  line-height: 1 !important;
  letter-spacing: .09em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.premium-style-block .premium-style-text-card strong {
  margin: 0 !important;
  color: #f7f2e8 !important;
  font-size: 13.5px !important;
  line-height: 1.05 !important;
  letter-spacing: -.02em !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.premium-style-block .premium-style-text-card em {
  margin: 0 !important;
  color: rgba(247,242,232,.58) !important;
  font-size: 10.5px !important;
  line-height: 1.22 !important;
  font-style: normal !important;
  overflow: hidden !important;
}

/* Наведение и выбор — мягко, без странных эффектов */
.premium-style-block .premium-style-text-card:hover {
  transform: translateY(-1px) !important;
  border-color: rgba(228,207,156,.42) !important;
  background: rgba(228,207,156,.024) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.22) !important;
}

.premium-style-block .premium-style-text-card:has(input:checked) {
  border-color: rgba(228,207,156,.88) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(228,207,156,.08), transparent 50%),
    rgba(228,207,156,.028) !important;
  box-shadow:
    0 0 0 1px rgba(228,207,156,.16),
    0 18px 42px rgba(0,0,0,.28) !important;
}

.premium-style-block .premium-style-text-card:has(input:checked)::before {
  border-bottom-color: rgba(228,207,156,.30) !important;
}

/* Адаптив */
@media (max-width: 1180px) {
  .premium-style-block .premium-style-grid.premium-style-text-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  .premium-style-block .premium-style-card,
  .premium-style-block .premium-style-text-card {
    height: 172px !important;
    min-height: 172px !important;
  }

  .premium-style-block .premium-style-text-card strong {
    font-size: 12.5px !important;
  }

  .premium-style-block .premium-style-text-card em {
    font-size: 10px !important;
  }
}

@media (max-width: 760px) {
  .premium-style-block .premium-style-grid.premium-style-text-grid {
    grid-template-columns: 1fr !important;
  }

  .premium-style-block .premium-style-card,
  .premium-style-block .premium-style-text-card {
    height: auto !important;
    min-height: 140px !important;
  }
}


/* GRAVIUM FINAL MICRO POLISH — map style cards */
.premium-style-block .premium-style-grid.premium-style-text-grid {
  gap: 9px !important;
}

.premium-style-block .premium-style-card,
.premium-style-block .premium-style-text-card,
.premium-style-block .premium-style-text-card:nth-child(5) {
  height: 184px !important;
  min-height: 184px !important;
  grid-template-rows: 72px 17px 18px 24px 1fr !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.040), rgba(255,255,255,.016)) !important;
}

.premium-style-block .premium-style-text-card::before {
  height: 72px !important;
}

/* более выразительные материалы */
.premium-style-block .premium-style-text-card[data-style-value="premium_dark"]::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,.045) 34%, rgba(255,255,255,.22) 50%, rgba(255,255,255,.04) 66%, transparent 100%),
    radial-gradient(circle at 78% 28%, rgba(228,207,156,.18), transparent 27%),
    linear-gradient(135deg, #010101 0%, #242424 54%, #050505 100%) !important;
}

.premium-style-block .premium-style-text-card[data-style-value="minimal"]::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,.40) 34%, rgba(255,255,255,.98) 50%, rgba(255,255,255,.24) 66%, transparent 100%),
    radial-gradient(circle at 76% 28%, rgba(228,207,156,.20), transparent 26%),
    linear-gradient(135deg, #fffdf6 0%, #d8d1c4 58%, #fff7e8 100%) !important;
}

.premium-style-block .premium-style-text-card[data-style-value="skeleton"]::before {
  background:
    linear-gradient(90deg, rgba(0,0,0,.14) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(0deg, rgba(0,0,0,.10) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(115deg, transparent 0%, rgba(0,0,0,.02) 36%, rgba(0,0,0,.08) 52%, rgba(0,0,0,.02) 68%, transparent 100%),
    linear-gradient(135deg, #ffffff 0%, #efefef 58%, #fbfbfb 100%) !important;
}

.premium-style-block .premium-style-text-card[data-style-value="coordinate"]::before {
  background:
    radial-gradient(circle at 78% 47%, rgba(228,207,156,.96) 0 3px, transparent 4px),
    radial-gradient(circle at 78% 47%, rgba(228,207,156,.24), transparent 30%),
    linear-gradient(115deg, transparent 0%, rgba(228,207,156,.035) 34%, rgba(228,207,156,.22) 52%, rgba(228,207,156,.035) 68%, transparent 100%),
    linear-gradient(135deg, #030303 0%, #181818 56%, #050505 100%) !important;
}

.premium-style-block .premium-style-text-card[data-style-value="love"]::before {
  background:
    radial-gradient(circle at 78% 48%, rgba(247,214,198,.34), transparent 29%),
    linear-gradient(115deg, transparent 0%, rgba(255,220,210,.04) 34%, rgba(255,220,210,.22) 52%, rgba(255,220,210,.04) 68%, transparent 100%),
    linear-gradient(135deg, #080303 0%, #220d0d 58%, #050202 100%) !important;
}

/* текст — чуть крупнее и ровнее */
.premium-style-block .premium-style-text-card .style-number {
  margin-top: 11px !important;
  font-size: 9.5px !important;
}

.premium-style-block .premium-style-text-card .style-kicker {
  font-size: 8.5px !important;
  letter-spacing: .10em !important;
}

.premium-style-block .premium-style-text-card strong {
  font-size: 14px !important;
  line-height: 1.08 !important;
}

.premium-style-block .premium-style-text-card em {
  font-size: 10.8px !important;
  line-height: 1.24 !important;
}

/* выбор без странных эффектов */
.premium-style-block .premium-style-text-card:has(input:checked) {
  border-color: rgba(228,207,156,.95) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(228,207,156,.09), transparent 52%),
    rgba(228,207,156,.026) !important;
  box-shadow:
    0 0 0 1px rgba(228,207,156,.18),
    0 18px 44px rgba(0,0,0,.30) !important;
}

.premium-style-block .premium-style-text-card:has(input:checked)::before {
  border-bottom-color: rgba(228,207,156,.34) !important;
}

@media (max-width: 1180px) {
  .premium-style-block .premium-style-card,
  .premium-style-block .premium-style-text-card {
    height: 178px !important;
    min-height: 178px !important;
  }

  .premium-style-block .premium-style-text-card strong {
    font-size: 13px !important;
  }

  .premium-style-block .premium-style-text-card em {
    font-size: 10.2px !important;
  }
}

/* GRAVIUM FINAL: contour card material without grid lines */
.premium-style-block .premium-style-text-card[data-style-value="skeleton"]::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(0,0,0,.018) 32%, rgba(0,0,0,.055) 50%, rgba(0,0,0,.018) 68%, transparent 100%),
    radial-gradient(circle at 78% 32%, rgba(228,207,156,.18), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #eeeeee 54%, #fbfbfb 100%) !important;
}

.premium-style-block .premium-style-text-card[data-style-value="skeleton"]::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  width: 24px !important;
  height: 15px !important;
  border: 1px solid rgba(0,0,0,.18) !important;
  border-radius: 3px !important;
  background: transparent !important;
  box-shadow:
    inset 0 -5px 0 rgba(0,0,0,.035),
    0 0 0 1px rgba(255,255,255,.35) !important;
}

/* GRAVIUM HOME FINAL: premium style cards like generator */
.home-premium-style-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.home-premium-style-card {
  position: relative;
  min-width: 0;
  min-height: 160px;
  display: grid;
  grid-template-rows: 54px auto auto auto 1fr;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: #f7f2e8;
  border: 1px solid rgba(255,255,255,.105);
  background: rgba(255,255,255,.018);
  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    background .22s ease;
}

.home-premium-style-card::before {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 54px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.home-premium-style-card[data-style-value="premium_dark"]::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,.05) 38%, rgba(255,255,255,.18) 50%, rgba(255,255,255,.04) 62%, transparent 100%),
    linear-gradient(135deg, #020202 0%, #1b1b1b 52%, #050505 100%);
}

.home-premium-style-card[data-style-value="minimal"]::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,.42) 38%, rgba(255,255,255,.88) 52%, rgba(255,255,255,.24) 64%, transparent 100%),
    linear-gradient(135deg, #fffaf0 0%, #d8d1c4 58%, #fff7e8 100%);
}

.home-premium-style-card[data-style-value="skeleton"]::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(0,0,0,.018) 32%, rgba(0,0,0,.055) 50%, rgba(0,0,0,.018) 68%, transparent 100%),
    radial-gradient(circle at 78% 32%, rgba(228,207,156,.18), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #eeeeee 54%, #fbfbfb 100%);
}

.home-premium-style-card[data-style-value="skeleton"]::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 24px;
  height: 15px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 3px;
  background: transparent;
  box-shadow:
    inset 0 -5px 0 rgba(0,0,0,.035),
    0 0 0 1px rgba(255,255,255,.35);
}

.home-premium-style-card[data-style-value="coordinate"]::before {
  background:
    radial-gradient(circle at 78% 50%, rgba(228,207,156,.95) 0 3px, transparent 4px),
    radial-gradient(circle at 78% 50%, rgba(228,207,156,.20), transparent 28%),
    linear-gradient(115deg, transparent 0%, rgba(228,207,156,.04) 38%, rgba(228,207,156,.17) 52%, rgba(228,207,156,.04) 64%, transparent 100%),
    linear-gradient(135deg, #030303 0%, #121212 56%, #050505 100%);
}

.home-premium-style-card[data-style-value="love"]::before {
  background:
    radial-gradient(circle at 78% 48%, rgba(247,214,198,.28), transparent 28%),
    linear-gradient(115deg, transparent 0%, rgba(255,220,210,.045) 38%, rgba(255,220,210,.17) 52%, rgba(255,220,210,.04) 64%, transparent 100%),
    linear-gradient(135deg, #090303 0%, #190909 58%, #050202 100%);
}

.home-premium-style-card[data-style-value="love"]::after {
  content: "❤";
  position: absolute;
  top: 14px;
  right: 17px;
  color: rgba(247,214,198,.72);
  font-size: 12px;
  line-height: 1;
  text-shadow: 0 0 18px rgba(247,214,198,.30);
}

.home-premium-style-card .style-number,
.home-premium-style-card .style-kicker,
.home-premium-style-card strong,
.home-premium-style-card em {
  display: block;
  position: relative;
  z-index: 2;
  padding-left: 11px;
  padding-right: 11px;
}

.home-premium-style-card .style-number {
  margin: 9px 0 6px;
  color: rgba(228,207,156,.48);
  font-size: 9px;
  line-height: 1;
  letter-spacing: .13em;
}

.home-premium-style-card .style-kicker {
  margin: 0 0 7px;
  min-height: 9px;
  color: rgba(228,207,156,.78);
  font-size: 8px;
  line-height: 1;
  letter-spacing: .10em;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-premium-style-card strong {
  margin: 0 0 7px;
  min-height: 15px;
  color: #f7f2e8;
  font-size: 13px;
  line-height: 1.06;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.home-premium-style-card em {
  margin: 0 0 9px;
  color: rgba(247,242,232,.58);
  font-size: 10.5px;
  line-height: 1.22;
  font-style: normal;
}

.home-premium-style-card:hover {
  transform: translateY(-1px);
  border-color: rgba(228,207,156,.44);
  box-shadow: 0 16px 42px rgba(0,0,0,.25);
}

@media (max-width: 1180px) {
  .home-premium-style-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
  }

  .home-premium-style-card {
    min-height: 154px;
  }

  .home-premium-style-card strong {
    font-size: 12.5px;
  }

  .home-premium-style-card em {
    font-size: 10px;
  }
}

@media (max-width: 760px) {
  .home-premium-style-grid {
    grid-template-columns: 1fr;
  }

  .home-premium-style-card {
    min-height: 140px;
  }
}

/* GRAVIUM HOME FINAL ACTIVE: premium map style cards */
.home-style-section .home-style-panel {
  display: grid !important;
  grid-template-columns: minmax(280px, .82fr) minmax(520px, 1.18fr) !important;
  gap: 34px !important;
  align-items: center !important;
}

.home-style-section .home-premium-style-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 8px !important;
  align-items: stretch !important;
}

.home-style-section .home-premium-style-card {
  position: relative !important;
  min-width: 0 !important;
  min-height: 158px !important;
  display: grid !important;
  grid-template-rows: 52px auto auto auto 1fr !important;
  padding: 0 !important;
  overflow: hidden !important;
  text-decoration: none !important;
  color: #f7f2e8 !important;
  border: 1px solid rgba(255,255,255,.105) !important;
  background: rgba(255,255,255,.018) !important;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease !important;
}

.home-style-section .home-premium-style-card::before {
  content: "" !important;
  display: block !important;
  position: relative !important;
  width: 100% !important;
  height: 52px !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
}

.home-style-section .home-premium-style-card::after {
  display: none !important;
}

.home-style-section .home-premium-style-card[data-style-value="premium_dark"]::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,.05) 38%, rgba(255,255,255,.18) 50%, rgba(255,255,255,.04) 62%, transparent 100%),
    linear-gradient(135deg, #020202 0%, #1b1b1b 52%, #050505 100%) !important;
}

.home-style-section .home-premium-style-card[data-style-value="minimal"]::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,.42) 38%, rgba(255,255,255,.88) 52%, rgba(255,255,255,.24) 64%, transparent 100%),
    linear-gradient(135deg, #fffaf0 0%, #d8d1c4 58%, #fff7e8 100%) !important;
}

.home-style-section .home-premium-style-card[data-style-value="skeleton"]::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(0,0,0,.018) 32%, rgba(0,0,0,.055) 50%, rgba(0,0,0,.018) 68%, transparent 100%),
    radial-gradient(circle at 78% 32%, rgba(228,207,156,.18), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #eeeeee 54%, #fbfbfb 100%) !important;
}

.home-style-section .home-premium-style-card[data-style-value="coordinate"]::before {
  background:
    radial-gradient(circle at 78% 50%, rgba(228,207,156,.95) 0 3px, transparent 4px),
    radial-gradient(circle at 78% 50%, rgba(228,207,156,.20), transparent 28%),
    linear-gradient(115deg, transparent 0%, rgba(228,207,156,.04) 38%, rgba(228,207,156,.17) 52%, rgba(228,207,156,.04) 64%, transparent 100%),
    linear-gradient(135deg, #030303 0%, #121212 56%, #050505 100%) !important;
}

.home-style-section .home-premium-style-card[data-style-value="love"]::before {
  background:
    radial-gradient(circle at 78% 48%, rgba(247,214,198,.28), transparent 28%),
    linear-gradient(115deg, transparent 0%, rgba(255,220,210,.045) 38%, rgba(255,220,210,.17) 52%, rgba(255,220,210,.04) 64%, transparent 100%),
    linear-gradient(135deg, #090303 0%, #190909 58%, #050202 100%) !important;
}

.home-style-section .home-premium-style-card .style-number,
.home-style-section .home-premium-style-card .style-kicker,
.home-style-section .home-premium-style-card strong,
.home-style-section .home-premium-style-card em {
  display: block !important;
  position: relative !important;
  z-index: 2 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.home-style-section .home-premium-style-card .style-number {
  margin: 9px 0 6px !important;
  color: rgba(228,207,156,.48) !important;
  font-size: 9px !important;
  line-height: 1 !important;
  letter-spacing: .13em !important;
}

.home-style-section .home-premium-style-card .style-kicker {
  margin: 0 0 7px !important;
  min-height: 9px !important;
  color: rgba(228,207,156,.78) !important;
  font-size: 8px !important;
  line-height: 1 !important;
  letter-spacing: .10em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.home-style-section .home-premium-style-card strong {
  margin: 0 0 7px !important;
  min-height: 15px !important;
  color: #f7f2e8 !important;
  font-size: 13px !important;
  line-height: 1.06 !important;
  letter-spacing: -.02em !important;
  white-space: nowrap !important;
}

.home-style-section .home-premium-style-card em {
  margin: 0 0 9px !important;
  color: rgba(247,242,232,.58) !important;
  font-size: 10.5px !important;
  line-height: 1.22 !important;
  font-style: normal !important;
}

.home-style-section .home-premium-style-card:hover {
  transform: translateY(-1px) !important;
  border-color: rgba(228,207,156,.44) !important;
  box-shadow: 0 16px 42px rgba(0,0,0,.25) !important;
}

@media (max-width: 1180px) {
  .home-style-section .home-style-panel {
    grid-template-columns: 1fr !important;
  }

  .home-style-section .home-premium-style-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }
}

@media (max-width: 760px) {
  .home-style-section .home-premium-style-grid {
    grid-template-columns: 1fr !important;
  }

  .home-style-section .home-premium-style-card {
    min-height: 140px !important;
  }
}

/* GRAVIUM FINAL: align keychain blank inside product card */
.home-product-grid .product-tile.tag-keychain::before {
  left: 50% !important;
  top: 74px !important;
  transform: translateX(-50%) !important;
  width: 72% !important;
  height: 46px !important;
  border-radius: 7px !important;
}

@media (max-width: 760px) {
  .home-product-grid .product-tile.tag-keychain::before {
    top: 58px !important;
    width: 68% !important;
    height: 42px !important;
  }
}


/* ================================================================
   Form section headers
   ================================================================ */
.form-section-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 32px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.form-section-num {
  font-size: 11px;
  letter-spacing: .22em;
  color: rgba(228,207,156,.6);
  font-weight: 700;
  min-width: 22px;
}

.form-section-label {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
}

.form-section-note {
  font-size: 12px;
  color: rgba(247,242,232,.42);
  letter-spacing: .06em;
}

/* ================================================================
   Mode cards — features list
   ================================================================ */
.mode-features {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.mode-features li {
  font-size: 12px;
  color: rgba(247,242,232,.56);
  padding-left: 14px;
  position: relative;
}

.mode-features li::before {
  content: —;
  position: absolute;
  left: 0;
  color: rgba(228,207,156,.5);
}

.mode-card.is-active .mode-features li {
  color: rgba(247,242,232,.76);
}

.mode-card.is-active .mode-features li::before {
  color: var(--gold-2);
}

/* ================================================================
   Premium style cards — clean CSS map art
   ================================================================ */
.premium-style-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 4px;
}

.premium-style-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.026);
  cursor: pointer;
  overflow: hidden;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.premium-style-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.premium-style-card:hover {
  transform: translateY(-2px);
  border-color: rgba(228,207,156,.32);
}

.premium-style-card:has(input:checked) {
  border-color: rgba(228,207,156,.64);
  background: rgba(201,168,106,.07);
  box-shadow: 0 12px 40px rgba(0,0,0,.34);
}

/* Art: pure CSS street-map via gradients, no inline HTML elements */
.psc-art {
  position: relative;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
}

.psc-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, var(--psc-line) 0, var(--psc-line) 1px, transparent 1px, transparent 24px),
    repeating-linear-gradient(0deg,  var(--psc-line) 0, var(--psc-line) 1px, transparent 1px, transparent 18px),
    linear-gradient(128deg, transparent 38%, var(--psc-road)  39%, var(--psc-road)  41%, transparent 42%),
    linear-gradient(15deg,  transparent 50%, var(--psc-road2) 51%, var(--psc-road2) 53%, transparent 54%),
    var(--psc-bg);
}

.psc-art::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid var(--psc-pin);
  background: var(--psc-pin-fill);
  transform: translate(-50%, -50%);
  outline: 3px solid var(--psc-bg);
  z-index: 1;
}

.psc-premium_dark { --psc-bg:#050505; --psc-line:rgba(246,241,232,.09); --psc-road:rgba(246,241,232,.52); --psc-road2:rgba(246,241,232,.26); --psc-pin:rgba(246,241,232,.92); --psc-pin-fill:rgba(246,241,232,.15); }
.psc-minimal      { --psc-bg:#f3efe4; --psc-line:rgba(17,17,17,.07);    --psc-road:rgba(17,17,17,.44);    --psc-road2:rgba(17,17,17,.20);    --psc-pin:rgba(17,17,17,.82);    --psc-pin-fill:rgba(17,17,17,.08); }
.psc-skeleton     { --psc-bg:#ffffff; --psc-line:rgba(5,5,5,.05);       --psc-road:rgba(5,5,5,.62);       --psc-road2:rgba(5,5,5,.30);       --psc-pin:rgba(5,5,5,.9);        --psc-pin-fill:rgba(5,5,5,.08); }
.psc-coordinate   { --psc-bg:#040404; --psc-line:rgba(228,207,156,.08); --psc-road:rgba(228,207,156,.56); --psc-road2:rgba(228,207,156,.24); --psc-pin:#c9a86a;               --psc-pin-fill:rgba(201,168,106,.18); }
.psc-love         { --psc-bg:#070606; --psc-line:rgba(255,247,238,.07); --psc-road:rgba(255,247,238,.44); --psc-road2:rgba(255,247,238,.20); --psc-pin:rgba(255,247,238,.9);  --psc-pin-fill:rgba(255,247,238,.14); }

.psc-love .psc-art::after {
  border-radius: 1px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.psc-coordinate .psc-art::after {
  box-shadow: 0 0 7px rgba(201,168,106,.55);
}

.psc-info {
  padding: 9px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.premium-style-card .style-num {
  font-size: 10px;
  letter-spacing: .2em;
  color: rgba(247,242,232,.36);
}
.premium-style-card strong {
  font-size: 14px;
  line-height: 1.15;
  color: rgba(247,242,232,.9);
  font-weight: 600;
}
.premium-style-card em {
  font-style: normal;
  font-size: 11px;
  color: rgba(247,242,232,.46);
  line-height: 1.4;
}
.premium-style-card:has(input:checked) .style-num { color: var(--gold); }
.premium-style-card:has(input:checked) strong      { color: var(--text); }
.premium-style-card:has(input:checked) em          { color: rgba(247,242,232,.7); }


@media (max-width: 860px) { .premium-style-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 560px) { .premium-style-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 860px) { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.premium-style-text-grid { /* compat alias */ }

/* ================================================================
   Home style cards — map art, единый стиль с form-картами
   ================================================================ */

.home-premium-style-card[data-style-value="premium_dark"] { --h-bg:#050505; --h-line:rgba(246,241,232,.09); --h-road:rgba(246,241,232,.52); --h-road2:rgba(246,241,232,.26); --h-pin:rgba(246,241,232,.92); --h-pin-fill:rgba(246,241,232,.15); }
.home-premium-style-card[data-style-value="minimal"]      { --h-bg:#f3efe4; --h-line:rgba(17,17,17,.07);    --h-road:rgba(17,17,17,.44);    --h-road2:rgba(17,17,17,.20);    --h-pin:rgba(17,17,17,.82);    --h-pin-fill:rgba(17,17,17,.08); }
.home-premium-style-card[data-style-value="skeleton"]     { --h-bg:#ffffff; --h-line:rgba(5,5,5,.05);       --h-road:rgba(5,5,5,.62);       --h-road2:rgba(5,5,5,.30);       --h-pin:rgba(5,5,5,.9);        --h-pin-fill:rgba(5,5,5,.08); }
.home-premium-style-card[data-style-value="coordinate"]   { --h-bg:#040404; --h-line:rgba(228,207,156,.08); --h-road:rgba(228,207,156,.56); --h-road2:rgba(228,207,156,.24); --h-pin:#c9a86a;               --h-pin-fill:rgba(201,168,106,.18); }
.home-premium-style-card[data-style-value="love"]         { --h-bg:#070606; --h-line:rgba(255,247,238,.07); --h-road:rgba(255,247,238,.44); --h-road2:rgba(255,247,238,.20); --h-pin:rgba(255,247,238,.9);  --h-pin-fill:rgba(255,247,238,.14); }

/* Grid + crossing roads (same as form psc-art::before) */
.home-premium-style-card::before,
.home-style-section .home-premium-style-card::before {
  background:
    repeating-linear-gradient(90deg, var(--h-line) 0, var(--h-line) 1px, transparent 1px, transparent 24px),
    repeating-linear-gradient(0deg,  var(--h-line) 0, var(--h-line) 1px, transparent 1px, transparent 18px),
    linear-gradient(128deg, transparent 38%, var(--h-road)  39%, var(--h-road)  41%, transparent 42%),
    linear-gradient(15deg,  transparent 50%, var(--h-road2) 51%, var(--h-road2) 53%, transparent 54%),
    var(--h-bg) !important;
}

/* Center pin */
.home-premium-style-card::after,
.home-style-section .home-premium-style-card::after {
  display: block !important;
  content: "" !important;
  font-size: 0 !important;
  position: absolute !important;
  left: 50% !important;
  top: 27px !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  border: 2px solid var(--h-pin) !important;
  background: var(--h-pin-fill) !important;
  transform: translate(-50%, -50%) !important;
  outline: 3px solid var(--h-bg) !important;
  box-shadow: none !important;
  z-index: 3 !important;
}

/* Love: diamond */
.home-premium-style-card[data-style-value="love"]::after,
.home-style-section .home-premium-style-card[data-style-value="love"]::after {
  border-radius: 1px !important;
  transform: translate(-50%, -50%) rotate(45deg) !important;
}

/* Coordinate: glow */
.home-premium-style-card[data-style-value="coordinate"]::after,
.home-style-section .home-premium-style-card[data-style-value="coordinate"]::after {
  box-shadow: 0 0 7px rgba(201,168,106,.55) !important;
}

/* === Home style cards: map art override (full specificity) === */

.home-style-section .home-premium-style-card[data-style-value="premium_dark"]::before,
.home-premium-style-card[data-style-value="premium_dark"]::before {
  background:
    repeating-linear-gradient(90deg, rgba(246,241,232,.09) 0, rgba(246,241,232,.09) 1px, transparent 1px, transparent 24px),repeating-linear-gradient(0deg,  rgba(246,241,232,.09) 0, rgba(246,241,232,.09) 1px, transparent 1px, transparent 18px),linear-gradient(128deg, transparent 38%, rgba(246,241,232,.52)  39%, rgba(246,241,232,.52)  41%, transparent 42%),linear-gradient(15deg,  transparent 50%, rgba(246,241,232,.26) 51%, rgba(246,241,232,.26) 53%, transparent 54%),#050505 !important;
}

.home-style-section .home-premium-style-card[data-style-value="premium_dark"]::after,
.home-premium-style-card[data-style-value="premium_dark"]::after {
  display: block !important;
  content: "" !important;
  font-size: 0 !important;
  position: absolute !important;
  left: 50% !important;
  top: 26px !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(246,241,232,.92) !important;
  background: rgba(246,241,232,.15) !important;
  transform: translate(-50%, -50%) !important;
  outline: 3px solid #050505 !important;
  z-index: 3 !important;
}

.home-style-section .home-premium-style-card[data-style-value="minimal"]::before,
.home-premium-style-card[data-style-value="minimal"]::before {
  background:
    repeating-linear-gradient(90deg, rgba(17,17,17,.07) 0, rgba(17,17,17,.07) 1px, transparent 1px, transparent 24px),repeating-linear-gradient(0deg,  rgba(17,17,17,.07) 0, rgba(17,17,17,.07) 1px, transparent 1px, transparent 18px),linear-gradient(128deg, transparent 38%, rgba(17,17,17,.44)  39%, rgba(17,17,17,.44)  41%, transparent 42%),linear-gradient(15deg,  transparent 50%, rgba(17,17,17,.20) 51%, rgba(17,17,17,.20) 53%, transparent 54%),#f3efe4 !important;
}

.home-style-section .home-premium-style-card[data-style-value="minimal"]::after,
.home-premium-style-card[data-style-value="minimal"]::after {
  display: block !important;
  content: "" !important;
  font-size: 0 !important;
  position: absolute !important;
  left: 50% !important;
  top: 26px !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(17,17,17,.82) !important;
  background: rgba(17,17,17,.08) !important;
  transform: translate(-50%, -50%) !important;
  outline: 3px solid #f3efe4 !important;
  z-index: 3 !important;
}

.home-style-section .home-premium-style-card[data-style-value="skeleton"]::before,
.home-premium-style-card[data-style-value="skeleton"]::before {
  background:
    repeating-linear-gradient(90deg, rgba(5,5,5,.05) 0, rgba(5,5,5,.05) 1px, transparent 1px, transparent 24px),repeating-linear-gradient(0deg,  rgba(5,5,5,.05) 0, rgba(5,5,5,.05) 1px, transparent 1px, transparent 18px),linear-gradient(128deg, transparent 38%, rgba(5,5,5,.62)  39%, rgba(5,5,5,.62)  41%, transparent 42%),linear-gradient(15deg,  transparent 50%, rgba(5,5,5,.30) 51%, rgba(5,5,5,.30) 53%, transparent 54%),#ffffff !important;
}

.home-style-section .home-premium-style-card[data-style-value="skeleton"]::after,
.home-premium-style-card[data-style-value="skeleton"]::after {
  display: block !important;
  content: "" !important;
  font-size: 0 !important;
  position: absolute !important;
  left: 50% !important;
  top: 26px !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(5,5,5,.9) !important;
  background: rgba(5,5,5,.08) !important;
  transform: translate(-50%, -50%) !important;
  outline: 3px solid #ffffff !important;
  z-index: 3 !important;
}

.home-style-section .home-premium-style-card[data-style-value="coordinate"]::before,
.home-premium-style-card[data-style-value="coordinate"]::before {
  background:
    repeating-linear-gradient(90deg, rgba(228,207,156,.08) 0, rgba(228,207,156,.08) 1px, transparent 1px, transparent 24px),repeating-linear-gradient(0deg,  rgba(228,207,156,.08) 0, rgba(228,207,156,.08) 1px, transparent 1px, transparent 18px),linear-gradient(128deg, transparent 38%, rgba(228,207,156,.56)  39%, rgba(228,207,156,.56)  41%, transparent 42%),linear-gradient(15deg,  transparent 50%, rgba(228,207,156,.24) 51%, rgba(228,207,156,.24) 53%, transparent 54%),#040404 !important;
}

.home-style-section .home-premium-style-card[data-style-value="coordinate"]::after,
.home-premium-style-card[data-style-value="coordinate"]::after {
  display: block !important;
  content: "" !important;
  font-size: 0 !important;
  position: absolute !important;
  left: 50% !important;
  top: 26px !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  border: 2px solid #c9a86a !important;
  background: rgba(201,168,106,.18) !important;
  transform: translate(-50%, -50%) !important;
  outline: 3px solid #040404 !important;
  z-index: 3 !important;
  box-shadow: 0 0 7px rgba(201,168,106,.55) !important;
}

.home-style-section .home-premium-style-card[data-style-value="love"]::before,
.home-premium-style-card[data-style-value="love"]::before {
  background:
    repeating-linear-gradient(90deg, rgba(255,247,238,.07) 0, rgba(255,247,238,.07) 1px, transparent 1px, transparent 24px),repeating-linear-gradient(0deg,  rgba(255,247,238,.07) 0, rgba(255,247,238,.07) 1px, transparent 1px, transparent 18px),linear-gradient(128deg, transparent 38%, rgba(255,247,238,.44)  39%, rgba(255,247,238,.44)  41%, transparent 42%),linear-gradient(15deg,  transparent 50%, rgba(255,247,238,.20) 51%, rgba(255,247,238,.20) 53%, transparent 54%),#070606 !important;
}

.home-style-section .home-premium-style-card[data-style-value="love"]::after,
.home-premium-style-card[data-style-value="love"]::after {
  display: block !important;
  content: "" !important;
  font-size: 0 !important;
  position: absolute !important;
  left: 50% !important;
  top: 26px !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(255,247,238,.9) !important;
  background: rgba(255,247,238,.14) !important;
  transform: translate(-50%, -50%) !important;
  outline: 3px solid #070606 !important;
  z-index: 3 !important;
  border-radius: 1px !important;
  transform: translate(-50%, -50%) rotate(45deg) !important;
}


/* =============================================
   GRAVIUM MEMORIES v2 — NEW HOME & DETAIL
   ============================================= */

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,.68,0,1.2), transform .65s cubic-bezier(.22,.68,0,1.2);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* Glow CTA */
.v2-btn-glow {
  position: relative;
  overflow: hidden;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
}
.v2-btn-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(228,207,156,.28) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: v2BtnShine 3.5s ease infinite;
  pointer-events: none;
}
@keyframes v2BtnShine {
  0%,65%,100% { transform: translateX(-100%); }
  40% { transform: translateX(100%); }
}
.v2-arrow { flex-shrink: 0; transition: transform .2s ease; }
.v2-btn-glow:hover .v2-arrow { transform: translateX(4px); }

/* ===== V2 HERO ===== */
.v2-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 36px 0 56px;
}
.v2-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.v2-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.v2-glow-a {
  width: 660px; height: 660px;
  background: radial-gradient(circle, rgba(201,168,106,.18) 0%, transparent 70%);
  top: -140px; right: -120px;
  animation: v2GlowBreath 9s ease-in-out infinite;
}
.v2-glow-b {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(228,207,156,.11) 0%, transparent 70%);
  bottom: 40px; left: -100px;
  animation: v2GlowBreath 11s ease-in-out infinite reverse;
}
@keyframes v2GlowBreath {
  0%,100% { opacity: .55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.v2-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.v2-hero-copy { padding: 20px 0; }
.v2-hero-h1 {
  font-size: clamp(50px, 7.5vw, 100px);
  line-height: .91;
  font-weight: 700;
  margin-bottom: 22px;
}
.v2-hero-em {
  font-style: italic;
  background: linear-gradient(100deg, var(--gold) 20%, var(--gold-2) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v2-hero-lead {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.62;
  margin-bottom: 30px;
  max-width: 560px;
}
.v2-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.v2-hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.v2-hero-tags span {
  padding: 5px 13px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: rgba(247,242,232,.52);
  font-size: 13px;
  letter-spacing: .06em;
}

.v2-hero-stage {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}
.v2-hero-card {
  position: relative;
  width: min(90%, 740px);
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(228,207,156,.3);
  overflow: hidden;
  box-shadow: 0 44px 140px rgba(0,0,0,.72), 0 0 0 1px rgba(255,255,255,.04);
  transform: rotate(-2.5deg);
  transition: transform .4s ease, box-shadow .4s ease;
}
.v2-hero-card:hover { transform: rotate(0deg) scale(1.012); box-shadow: 0 52px 160px rgba(0,0,0,.78); }
.v2-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) brightness(.86) saturate(.82);
  transform: scale(1.05);
  transition: transform .4s ease;
}
.v2-hero-card:hover img { transform: scale(1.02); }
.v2-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.16), transparent 42%, rgba(0,0,0,.22)),
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.44));
  z-index: 1;
}
.v2-hero-badge {
  position: absolute;
  z-index: 2;
  padding: 12px 18px;
  border: 1px solid rgba(228,207,156,.34);
  background: rgba(5,5,5,.76);
  backdrop-filter: blur(14px);
  min-width: 185px;
  box-shadow: 0 18px 60px rgba(0,0,0,.4);
}
.v2-hero-badge span {
  display: block;
  color: var(--gold-2);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.v2-hero-badge strong { color: rgba(255,255,255,.9); font-size: 14px; }
.v2-badge-tl { top: 24px; left: 24px; }
.v2-badge-br { bottom: 24px; right: 24px; }

.v2-float-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
}
.v2-dot-1 { width: 9px; height: 9px; top: 16%; left: 7%; opacity: .72; animation: v2DotFloat 6s ease-in-out infinite; }
.v2-dot-2 { width: 5px; height: 5px; top: 68%; right: 5%; opacity: .48; background: var(--gold-2); animation: v2DotFloat 8s ease-in-out infinite 1.2s; }
.v2-dot-3 { width: 7px; height: 7px; bottom: 14%; left: 16%; opacity: .6; animation: v2DotFloat 7s ease-in-out infinite 2.5s; }
@keyframes v2DotFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ===== V2 WHAT ===== */
.v2-what {
  padding: 72px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.v2-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}
.v2-what-text {
  background:
    radial-gradient(circle at 10% 10%, rgba(228,207,156,.1), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.018));
  border: 1px solid rgba(255,255,255,.095);
  padding: clamp(24px, 4vw, 48px);
  box-shadow: 0 30px 100px rgba(0,0,0,.26);
}
.v2-what-text h2 { max-width: 540px; }
.v2-what-text p {
  color: rgba(247,242,232,.7);
  font-size: 17px;
  line-height: 1.68;
  max-width: 560px;
  margin-bottom: 16px;
}
.v2-what-tiles { display: grid; gap: 10px; }
.v2-what-tile {
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(90deg, rgba(255,255,255,.044), rgba(255,255,255,.016));
  padding: 22px;
  display: grid;
  gap: 8px;
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}
.v2-what-tile:hover {
  border-color: rgba(228,207,156,.3);
  background: linear-gradient(90deg, rgba(228,207,156,.07), rgba(255,255,255,.02));
  transform: translateX(4px);
}
.v2-tile-icon { font-size: 24px; color: var(--gold); line-height: 1; }
.v2-what-tile strong { font-size: 20px; color: var(--text); }
.v2-what-tile p { color: rgba(247,242,232,.62); font-size: 15px; line-height: 1.52; margin: 0; }

/* ===== V2 FLOW ===== */
.v2-flow {
  padding: 72px 0;
  background:
    radial-gradient(circle at 68% 28%, rgba(228,207,156,.06), transparent 38%),
    rgba(255,255,255,.012);
  border-top: 1px solid rgba(255,255,255,.065);
  border-bottom: 1px solid rgba(255,255,255,.065);
}
.v2-flow-head { margin-bottom: 30px; }
.v2-flow-head h2 { margin-bottom: 0; }
.v2-flow-steps {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
  align-items: start;
}
.v2-flow-step {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(180deg, rgba(255,255,255,.048), rgba(255,255,255,.016));
  min-height: 220px;
  align-content: start;
  transition: border-color .2s ease, background .2s ease;
}
.v2-flow-step:hover { border-color: rgba(228,207,156,.34); background: linear-gradient(180deg, rgba(228,207,156,.07), rgba(255,255,255,.018)); }
.v2-step-num { color: var(--gold); font-size: 12px; letter-spacing: .16em; font-weight: 700; }
.v2-flow-step strong { font-size: 20px; line-height: 1.15; }
.v2-flow-step p { color: rgba(247,242,232,.62); font-size: 15px; line-height: 1.55; margin: 0; }
.v2-flow-conn {
  border-top: 1px solid rgba(228,207,156,.28);
  margin-top: 52px;
  align-self: start;
}
.v2-flow-cta { text-align: center; margin-top: 40px; }

/* ===== V2 STYLES ===== */
.v2-styles { padding: 72px 0; }
.v2-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.v2-section-head .lead { max-width: 680px; margin-bottom: 0; font-size: 17px; }
.v2-styles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.v2-style-card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  text-decoration: none;
}
.v2-style-card:hover {
  transform: translateY(-6px);
  border-color: rgba(228,207,156,.4);
  box-shadow: 0 20px 70px rgba(0,0,0,.4);
}
.v2-sc-art {
  position: absolute;
  inset: 18px -44px auto -22px;
  height: 155px;
  background:
    linear-gradient(18deg, transparent 43%, currentColor 44%, currentColor 46%, transparent 47%),
    linear-gradient(96deg, transparent 52%, currentColor 53%, currentColor 55%, transparent 56%),
    linear-gradient(154deg, transparent 38%, currentColor 39%, currentColor 42%, transparent 43%);
  opacity: .88;
  pointer-events: none;
}
.v2-sc-dark { background: #050505; color: #f7f2e8; }
.v2-sc-light { background: #f4f0e7; color: #050505; }
.v2-sc-skeleton { background: #fff; color: #050505; }
.v2-sc-coord { background: #070707; color: #e4cf9c; }
.v2-sc-love { background: #090606; color: #fff7ee; }
.v2-style-card strong { position: relative; z-index: 1; font-size: 15px; font-weight: 700; color: inherit; }
.v2-style-card em { position: relative; z-index: 1; display: block; margin-top: 5px; font-style: normal; font-size: 12px; color: inherit; opacity: .65; }
.v2-sc-light em, .v2-sc-skeleton em { color: #050505; }
.v2-sc-love::after { content: "♥"; position: absolute; right: 18px; top: 18px; font-size: 22px; opacity: .55; }

/* ===== V2 STORIES ===== */
.v2-stories {
  padding: 72px 0;
  border-top: 1px solid rgba(255,255,255,.065);
  background: rgba(255,255,255,.013);
}
.v2-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.v2-story-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease;
  text-decoration: none;
}
.v2-story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(228,207,156,.32);
}
.v2-story-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0a0a0a;
}
.v2-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.9) saturate(.78);
  transition: transform .4s ease;
}
.v2-story-card:hover .v2-story-img img { transform: scale(1.05); }
.v2-story-img-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(0,0,0,.52));
  z-index: 1;
}
.v2-story-img-empty {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 44px;
  color: var(--gold);
  background: radial-gradient(circle at 50% 44%, rgba(201,168,106,.12), transparent 62%);
}
.v2-story-body { padding: 18px; display: grid; gap: 6px; }
.v2-story-body strong { font-size: 18px; color: var(--text); line-height: 1.2; }
.v2-story-body time { color: var(--gold-2); font-size: 13px; }
.v2-story-body p { color: rgba(247,242,232,.64); font-size: 14px; line-height: 1.52; margin: 0; }

/* ===== V2 PRODUCTS ===== */
.v2-products {
  padding: 72px 0;
  border-top: 1px solid rgba(255,255,255,.065);
  border-bottom: 1px solid rgba(255,255,255,.065);
  background: rgba(255,255,255,.014);
}
.v2-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.v2-product-card {
  min-height: 308px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(circle at 50% 34%, rgba(255,255,255,.14), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease;
}
.v2-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(228,207,156,.36);
}
.v2-pc-art {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
}
.v2-art-tag {
  width: 68%;
  aspect-ratio: 50 / 28;
  border-radius: 7px;
  background: linear-gradient(145deg, #fffaf0, #b8b4aa);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.36), 0 22px 52px rgba(0,0,0,.34);
}
.v2-art-round {
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #fffaf0, #b8b4aa);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.36), 0 22px 52px rgba(0,0,0,.34);
}
.v2-art-key {
  width: 78%;
  aspect-ratio: 50 / 12;
  border-radius: 4px;
  background: linear-gradient(145deg, #fffaf0, #b8b4aa);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.36), 0 22px 52px rgba(0,0,0,.34);
}
.v2-art-pend {
  width: 66%;
  aspect-ratio: 40 / 20;
  border-radius: 5px;
  background: linear-gradient(145deg, #fffaf0, #b8b4aa);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.36), 0 22px 52px rgba(0,0,0,.34);
}
.v2-product-card span { position: absolute; bottom: 76px; left: 16px; right: 16px; color: rgba(255,255,255,.88); font-size: 17px; font-weight: 600; }
.v2-product-card strong { position: absolute; bottom: 52px; left: 16px; right: 16px; color: var(--gold-2); font-size: 14px; }
.v2-product-card em { position: absolute; bottom: 18px; left: 16px; right: 16px; color: rgba(247,242,232,.52); font-size: 13px; font-style: normal; line-height: 1.35; }

/* ===== V2 FINAL CTA ===== */
.v2-final {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.065);
}
.v2-final-glow {
  position: absolute;
  width: 900px; height: 500px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(201,168,106,.16), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  animation: v2GlowBreath 7s ease-in-out infinite;
}
.v2-final-inner {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  z-index: 1;
}
.v2-final-title { font-size: clamp(38px, 5.5vw, 66px); line-height: 1.02; margin-bottom: 18px; }
.v2-final-sub {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.62;
  margin-bottom: 32px;
}
.v2-final-btn { min-height: 60px; padding: 0 32px; font-size: 17px; }

/* ===== V2 MEMORY DETAIL ===== */
.v2-mem-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(201,168,106,.06), transparent 40%), var(--bg);
}
.v2-mem-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.v2-mem-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.38) saturate(.65);
  transform: scale(1.04);
}
.v2-mem-bg-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,.25) 0%, rgba(5,5,5,.88) 100%);
}
.v2-mem-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 55% 30%, rgba(201,168,106,.12), transparent 52%);
  z-index: 0;
  pointer-events: none;
}
.v2-mem-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 88px;
}
.v2-mem-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.v2-mem-date {
  color: var(--gold-2);
  font-size: 14px;
  border: 1px solid rgba(228,207,156,.3);
  padding: 5px 12px;
  background: rgba(201,168,106,.09);
}
.v2-mem-title {
  font-size: clamp(48px, 7.5vw, 100px);
  line-height: .93;
  margin-bottom: 16px;
}
.v2-mem-coords {
  color: rgba(247,242,232,.52);
  font-size: 14px;
  letter-spacing: .2em;
}

.v2-mem-body { padding: 52px 0 38px; }
.v2-mem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}
.v2-mem-story-col {
  border: 1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(circle at 10% 10%, rgba(228,207,156,.08), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.018));
  padding: clamp(24px, 4vw, 52px);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  box-shadow: 0 30px 100px rgba(0,0,0,.24);
}
.v2-mem-story {
  color: rgba(255,255,255,.82);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
  flex: 1;
}
.v2-mem-story-empty { color: rgba(255,255,255,.48); font-style: italic; }
.v2-mem-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.v2-mem-meta-item {
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.025);
  padding: 12px;
}
.v2-mem-meta-item span { display: block; color: rgba(255,255,255,.5); font-size: 12px; margin-bottom: 5px; }
.v2-mem-meta-item strong { font-size: 14px; }
.v2-mem-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }

.v2-mem-visual-col { display: grid; gap: 12px; }
.v2-mem-photo-wrap { border: 1px solid rgba(255,255,255,.1); overflow: hidden; }
.v2-mem-photo {
  width: 100%; max-height: 380px; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.v2-mem-photo-wrap:hover .v2-mem-photo { transform: scale(1.03); }
.v2-mem-mockup-wrap { border: 1px solid rgba(255,255,255,.1); background: rgba(0,0,0,.18); padding: 8px; }
.v2-mem-mockup { width: 100%; display: block; }
.v2-mem-asset-row { display: grid; grid-template-columns: 1fr 140px; gap: 10px; }
.v2-mem-map-wrap, .v2-mem-qr-wrap {
  border: 1px solid rgba(255,255,255,.1);
  background: #050505;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.v2-mem-map-wrap img, .v2-mem-qr-wrap img { width: 100%; display: block; flex: 1; object-fit: cover; }
.v2-mem-map-wrap span, .v2-mem-qr-wrap span {
  display: block; padding: 7px 10px;
  color: rgba(247,242,232,.46); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,.07);
}
.v2-mem-qr-dl {
  display: block; padding: 8px 10px;
  color: var(--gold-2); font-size: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  transition: background .2s ease;
}
.v2-mem-qr-dl:hover { background: rgba(201,168,106,.09); }

.v2-mem-downloads { padding: 0 0 52px; }
.v2-mem-dl-details {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.15);
}
.v2-mem-dl-details summary {
  padding: 14px 20px;
  cursor: pointer;
  color: rgba(228,207,156,.75);
  font-size: 14px;
  user-select: none;
  list-style: none;
}
.v2-mem-dl-details summary::before { content: "▸ "; }
.v2-mem-dl-details[open] summary::before { content: "▾ "; }
.v2-mem-dl-details summary:hover { color: var(--gold-2); }
.v2-mem-dl-details[open] summary { border-bottom: 1px solid rgba(255,255,255,.07); }
.v2-mem-dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px;
}
.v2-mem-dl-grid a {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(228,207,156,.2);
  background: rgba(201,168,106,.05);
  color: var(--text);
  font-size: 13px;
  transition: border-color .2s ease, background .2s ease;
}
.v2-mem-dl-grid a:hover { border-color: rgba(228,207,156,.44); background: rgba(201,168,106,.09); }

/* ===== V2 RESPONSIVE ===== */
@media (max-width: 1040px) {
  .v2-hero-inner { grid-template-columns: 1fr; }
  .v2-hero-stage { min-height: 500px; }
  .v2-what-grid { grid-template-columns: 1fr; }
  .v2-flow-steps { grid-template-columns: 1fr 1fr; gap: 12px; }
  .v2-flow-conn { display: none; }
  .v2-styles-grid { grid-template-columns: repeat(3, 1fr); }
  .v2-stories-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-products-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-mem-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .v2-hero { min-height: auto; padding: 22px 0 44px; }
  .v2-hero-h1 { font-size: clamp(42px, 11vw, 66px); }
  .v2-hero-card { transform: rotate(-1.5deg); }
  .v2-float-dot { display: none; }
  .v2-what-text { padding: 22px; }
  .v2-flow-steps { grid-template-columns: 1fr; }
  .v2-styles-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-stories-grid { grid-template-columns: 1fr; }
  .v2-products-grid { grid-template-columns: 1fr; }
  .v2-section-head { flex-direction: column; align-items: flex-start; }
  .v2-mem-hero { min-height: 46vh; }
  .v2-mem-title { font-size: clamp(38px, 10vw, 60px); }
  .v2-mem-meta { grid-template-columns: 1fr; }
  .v2-mem-asset-row { grid-template-columns: 1fr; }
  .v2-mem-dl-grid { grid-template-columns: 1fr 1fr; }
}


/* =============================================
   MEMORY CARD — Beautiful detail page v2.1
   ============================================= */

.mc-page {
  position: relative;
  min-height: 100vh;
  padding: 0 0 80px;
}

/* Full-page background */
.mc-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.mc-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.22) saturate(.5) blur(6px);
  transform: scale(1.06);
}
.mc-bg-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,.62) 0%, rgba(5,5,5,.88) 60%, #050505 100%);
}
.mc-bg-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 60% 20%, rgba(201,168,106,.14), transparent 44%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,106,.08), transparent 36%);
}

/* Outer container */
.mc-outer {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  max-width: 1060px;
}

/* THE CARD */
.mc-card {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(228,207,156,.12), transparent 46%),
    radial-gradient(ellipse at 80% 100%, rgba(201,168,106,.07), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.068) 0%, rgba(255,255,255,.028) 100%);
  border: 1px solid rgba(228,207,156,.26);
  box-shadow:
    0 60px 200px rgba(0,0,0,.72),
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 1px 0 rgba(228,207,156,.18) inset;
  overflow: hidden;
  position: relative;
}

/* Card shimmer top line */
.mc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228,207,156,.6) 30%, rgba(228,207,156,.6) 70%, transparent);
}

/* Card top: brand + date */
.mc-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(28px, 4vw, 52px) clamp(28px, 4vw, 56px) 0;
}
.mc-brand {
  color: var(--gold-2);
  font-size: 11px;
  letter-spacing: .22em;
}
.mc-date-block {
  text-align: right;
  display: grid;
  gap: 0;
}
.mc-date-day {
  display: block;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}
.mc-date-month {
  display: block;
  font-size: 13px;
  color: rgba(247,242,232,.68);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.mc-date-year {
  display: block;
  font-size: 13px;
  color: rgba(247,242,232,.45);
  letter-spacing: .12em;
}

/* Title */
.mc-title {
  padding: 22px clamp(28px, 4vw, 56px) 0;
  font-size: clamp(46px, 7.5vw, 100px);
  line-height: .93;
  font-weight: 700;
  margin: 0;
  word-break: break-word;
}

/* Coordinates */
.mc-coord-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px clamp(28px, 4vw, 56px) 0;
  color: rgba(247,242,232,.48);
  font-size: 13px;
  letter-spacing: .18em;
}
.mc-coord-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .8;
  flex-shrink: 0;
}

/* Divider */
.mc-divider {
  margin: 26px clamp(28px, 4vw, 56px);
  height: 1px;
  background: linear-gradient(90deg, rgba(228,207,156,.4), rgba(228,207,156,.1) 60%, transparent);
}

/* Card body: 2 columns */
.mc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
}

/* Story column */
.mc-story-col {
  padding: 0 clamp(20px, 3vw, 40px) clamp(28px, 4vw, 52px) clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 340px;
  justify-content: space-between;
}

.mc-story {
  font-size: clamp(17px, 2.2vw, 24px);
  line-height: 1.72;
  color: rgba(255,255,255,.86);
  font-weight: 300;
  letter-spacing: .01em;
  flex: 1;
}
.mc-story-empty {
  color: rgba(255,255,255,.44);
  font-style: italic;
}

/* Meta chips */
.mc-meta-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mc-chip {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.04);
}
.mc-chip em { font-style: normal; font-size: 11px; color: rgba(247,242,232,.45); letter-spacing: .1em; text-transform: uppercase; }
.mc-chip strong { font-size: 14px; color: rgba(247,242,232,.88); }

/* Actions */
.mc-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Visual column */
.mc-visual-col {
  padding: 0 clamp(28px, 4vw, 52px) clamp(28px, 4vw, 52px) clamp(20px, 3vw, 40px);
  display: grid;
  gap: 12px;
  border-left: 1px solid rgba(255,255,255,.07);
}

/* Photo frame */
.mc-photo-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(228,207,156,.18);
  background: #0a0a0a;
}
.mc-photo-frame img {
  width: 100%; max-height: 320px; object-fit: cover; display: block;
  filter: brightness(.94);
  transition: transform .4s ease;
}
.mc-photo-frame:hover img { transform: scale(1.03); }
.mc-photo-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.07) 0%, transparent 40%);
  pointer-events: none;
}

/* Mockup frame */
.mc-mockup-frame {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.2);
  padding: 6px;
}
.mc-mockup-frame img { width: 100%; display: block; }

/* Map + QR row */
.mc-map-qr {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 10px;
}
.mc-map-frame, .mc-qr-frame {
  border: 1px solid rgba(255,255,255,.1);
  background: #050505;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mc-map-frame img, .mc-qr-frame img { width: 100%; display: block; flex: 1; object-fit: cover; }
.mc-map-frame span, .mc-qr-frame span {
  display: block;
  padding: 7px 10px;
  color: rgba(247,242,232,.44);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,.07);
  text-align: center;
}
.mc-qr-dl {
  display: block;
  padding: 6px 10px;
  color: var(--gold-2);
  font-size: 11px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.07);
  transition: background .2s ease;
}
.mc-qr-dl:hover { background: rgba(201,168,106,.08); }

/* Card footer */
.mc-card-footer {
  padding: 0 clamp(28px, 4vw, 56px) clamp(22px, 3vw, 36px);
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 8px;
}
.mc-dl-details summary {
  padding: 14px 0;
  cursor: pointer;
  color: rgba(228,207,156,.6);
  font-size: 13px;
  user-select: none;
  list-style: none;
}
.mc-dl-details summary::before { content: "▸ "; }
.mc-dl-details[open] summary::before { content: "▾ "; }
.mc-dl-details summary:hover { color: var(--gold-2); }
.mc-dl-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 4px;
}
.mc-dl-row a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(228,207,156,.18);
  background: rgba(201,168,106,.04);
  color: rgba(247,242,232,.75);
  font-size: 13px;
  transition: border-color .2s ease, color .2s ease;
}
.mc-dl-row a:hover { border-color: rgba(228,207,156,.42); color: var(--gold-2); }

/* Responsive */
@media (max-width: 860px) {
  .mc-body { grid-template-columns: 1fr; }
  .mc-story-col { padding-right: clamp(28px, 4vw, 56px); min-height: auto; }
  .mc-visual-col { border-left: none; border-top: 1px solid rgba(255,255,255,.07); padding-left: clamp(28px, 4vw, 56px); }
  .mc-date-block { text-align: left; }
}
@media (max-width: 560px) {
  .mc-title { font-size: clamp(38px, 10vw, 64px); }
  .mc-map-qr { grid-template-columns: 1fr; }
  .mc-date-day { font-size: 40px; }
}


/* =============================================
   CREATE FORM polish v2.1
   ============================================= */

/* Mode cards — cleaner */
.mode-features {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 5px;
}
.mode-features li {
  color: rgba(247,242,232,.58);
  font-size: 13px;
  padding-left: 14px;
  position: relative;
}
.mode-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}
.mode-card.is-active .mode-features li { color: rgba(247,242,232,.76); }

/* Section headers */
.form-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 30px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.form-section-num {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 700;
}
.form-section-label {
  font-size: 14px;
  color: rgba(247,242,232,.86);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.form-section-note {
  margin-left: auto;
  font-size: 12px;
  color: rgba(228,207,156,.65);
  letter-spacing: .08em;
}

/* Preview sidebar export list nicer */
.export-list {
  border: 1px solid rgba(255,255,255,.08);
  border-top: none;
  background: rgba(0,0,0,.16);
  margin-top: 0 !important;
  gap: 0 !important;
}
.export-list div {
  border-bottom: 1px solid rgba(255,255,255,.06);
  border-radius: 0 !important;
  padding: 11px 14px !important;
}
.export-list div:last-child { border-bottom: none; }
.export-list span { font-size: 11px !important; letter-spacing: .12em !important; opacity: .8; }
.export-list strong { font-size: 13px !important; }

/* Submit button */
.btn-wide.v2-btn-glow {
  margin-top: 24px;
  min-height: 56px;
  font-size: 16px;
  letter-spacing: .04em;
}


/* =============================================
   V2 STYLE CARDS — Map preview redesign
   ============================================= */

/* Override old style card classes */
.v2-style-card { display: none !important; }

/* Base card */
.v2-sc {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
  text-decoration: none;
  cursor: pointer;
}
.v2-sc:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}

/* Map preview area */
.v2-sc-map {
  position: relative;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}

/* === ROADS === */
.v2-r {
  position: absolute;
  transform-origin: center;
  border-radius: 99px;
}

/* Horizontal roads */
.v2-rh1 {
  left: -8%; right: -8%; height: 4px;
  top: 46%; transform: rotate(-7deg);
}
.v2-rh2 {
  left: -8%; right: -8%; height: 2px;
  top: 24%; transform: rotate(11deg);
  opacity: .75;
}
.v2-rh3 {
  left: -5%; width: 70%; height: 2px;
  top: 70%; transform: rotate(-3deg);
  opacity: .65;
}

/* Vertical roads */
.v2-rv1 {
  top: -5%; bottom: -5%; width: 3px;
  left: 62%; transform: rotate(0deg);
  opacity: .8;
}
.v2-rv2 {
  top: -5%; bottom: -5%; width: 2px;
  left: 30%; transform: rotate(0deg);
  opacity: .55;
}

/* === CITY BLOCKS === */
.v2-b {
  position: absolute;
  border-radius: 2px;
}
.v2-b1 { width: 58px; height: 36px; left: 7%;  top: 10%; transform: rotate(7deg); }
.v2-b2 { width: 44px; height: 52px; left: 65%; top: 6%;  transform: rotate(-4deg); }
.v2-b3 { width: 70px; height: 30px; left: 33%; top: 62%; transform: rotate(5deg); }
.v2-b4 { width: 38px; height: 40px; right: 4%; top: 55%; transform: rotate(-7deg); }

/* === LOCATION MARKER === */
.v2-marker {
  position: absolute;
  left: 56%; top: 42%;
  transform: translate(-50%, -50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  z-index: 4;
}
.v2-marker::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
}

/* === CROSSHAIR (coordinate style) === */
.v2-crosshair {
  position: absolute;
  opacity: .4;
  pointer-events: none;
  z-index: 3;
}
.v2-ch-h {
  left: 0; right: 0; height: 1px;
  top: 42%; transform: translateY(-50%);
}
.v2-ch-v {
  top: 0; bottom: 0; width: 1px;
  left: 56%; transform: translateX(-50%);
}

/* === HEART (love style) === */
.v2-heart {
  position: absolute;
  left: 56%; top: 42%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 18px; height: 18px;
  z-index: 4;
}
.v2-heart::before,
.v2-heart::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 18px; height: 18px;
}
.v2-heart::before { top: -9px; left: 0; }
.v2-heart::after  { top: 0; left: -9px; }

/* === CARD LABEL === */
.v2-sc-info {
  padding: 15px 18px 17px;
  flex: 1;
}
.v2-sc-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: inherit;
}
.v2-sc-info em {
  display: block;
  font-style: normal;
  font-size: 12px;
  opacity: .6;
  color: inherit;
}

/* ======= DARK ======= */
.v2-sc-dark {
  background: #060606;
  color: #f2ede0;
  border-color: rgba(255,255,255,.1);
}
.v2-sc-dark:hover { border-color: rgba(228,207,156,.4); }
.v2-sc-dark .v2-sc-map {
  background:
    repeating-linear-gradient(0deg,   rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 1px, transparent 54px),
    repeating-linear-gradient(90deg,  rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 1px, transparent 54px),
    #050505;
}
.v2-sc-dark .v2-r       { background: rgba(247,242,232,.88); }
.v2-sc-dark .v2-rh1     { background: rgba(247,242,232,.95); }
.v2-sc-dark .v2-b       { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); }
.v2-sc-dark .v2-marker  { background: #f2ede0; box-shadow: 0 0 0 5px #050505, 0 0 0 7px rgba(247,242,232,.3), 0 0 22px rgba(247,242,232,.15); }
.v2-sc-dark .v2-marker::after { background: #050505; }
.v2-sc-dark .v2-sc-info { border-top: 1px solid rgba(255,255,255,.07); }

/* ======= LIGHT ======= */
.v2-sc-light {
  background: #f4f0e7;
  color: #1c1c1a;
  border-color: rgba(0,0,0,.12);
}
.v2-sc-light:hover { border-color: rgba(0,0,0,.28); }
.v2-sc-light .v2-sc-map {
  background:
    repeating-linear-gradient(0deg,  rgba(0,0,0,.06) 0, rgba(0,0,0,.06) 1px, transparent 1px, transparent 54px),
    repeating-linear-gradient(90deg, rgba(0,0,0,.06) 0, rgba(0,0,0,.06) 1px, transparent 1px, transparent 54px),
    #f4f0e7;
}
.v2-sc-light .v2-r      { background: rgba(30,30,20,.6); }
.v2-sc-light .v2-rh1    { background: rgba(30,30,20,.75); }
.v2-sc-light .v2-b      { background: rgba(0,0,0,.06); border: 1px solid rgba(0,0,0,.12); }
.v2-sc-light .v2-marker { background: #1c1c1a; box-shadow: 0 0 0 5px #f4f0e7, 0 0 0 7px rgba(0,0,0,.2), 0 0 18px rgba(0,0,0,.1); }
.v2-sc-light .v2-marker::after { background: #f4f0e7; }
.v2-sc-light .v2-sc-info { border-top: 1px solid rgba(0,0,0,.09); }

/* ======= SKELETON ======= */
.v2-sc-skeleton {
  background: #ffffff;
  color: #111111;
  border-color: rgba(0,0,0,.12);
}
.v2-sc-skeleton:hover { border-color: rgba(0,0,0,.25); }
.v2-sc-skeleton .v2-sc-map { background: #ffffff; }
.v2-sc-skeleton .v2-r  { background: rgba(0,0,0,.75); }
.v2-sc-skeleton .v2-rh1 { height: 2px; background: rgba(0,0,0,.85); }
.v2-sc-skeleton .v2-rh2 { height: 1px; }
.v2-sc-skeleton .v2-rh3 { height: 1px; }
.v2-sc-skeleton .v2-rv1 { width: 1px; }
.v2-sc-skeleton .v2-rv2 { width: 1px; }
.v2-sc-skeleton .v2-b   { background: transparent; border: 1px solid rgba(0,0,0,.55); }
.v2-sc-skeleton .v2-marker { background: #111; box-shadow: 0 0 0 5px #fff, 0 0 0 7px rgba(0,0,0,.25); }
.v2-sc-skeleton .v2-marker::after { background: #fff; }
.v2-sc-skeleton .v2-sc-info { border-top: 1px solid rgba(0,0,0,.09); }

/* ======= COORDINATE ======= */
.v2-sc-coord {
  background: #060606;
  color: #e4cf9c;
  border-color: rgba(228,207,156,.15);
}
.v2-sc-coord:hover { border-color: rgba(228,207,156,.48); }
.v2-sc-coord .v2-sc-map {
  background:
    radial-gradient(circle at 56% 42%, rgba(228,207,156,.11) 0%, transparent 36%),
    repeating-linear-gradient(0deg,  rgba(228,207,156,.055) 0, rgba(228,207,156,.055) 1px, transparent 1px, transparent 54px),
    repeating-linear-gradient(90deg, rgba(228,207,156,.055) 0, rgba(228,207,156,.055) 1px, transparent 1px, transparent 54px),
    #060606;
}
.v2-sc-coord .v2-r      { background: rgba(228,207,156,.62); }
.v2-sc-coord .v2-rh1    { background: rgba(228,207,156,.8); }
.v2-sc-coord .v2-b      { background: rgba(228,207,156,.05); border: 1px solid rgba(228,207,156,.18); }
.v2-sc-coord .v2-marker {
  background: #e4cf9c;
  box-shadow: 0 0 0 5px #060606, 0 0 0 7px rgba(228,207,156,.35), 0 0 30px rgba(228,207,156,.3);
  animation: v2CoordPulse 2.8s ease-in-out infinite;
}
.v2-sc-coord .v2-marker::after { background: #060606; }
.v2-sc-coord .v2-crosshair { background: rgba(228,207,156,.32); }
.v2-sc-coord .v2-sc-info { border-top: 1px solid rgba(228,207,156,.12); }
@keyframes v2CoordPulse {
  0%,100% { box-shadow: 0 0 0 5px #060606, 0 0 0 7px rgba(228,207,156,.3), 0 0 20px rgba(228,207,156,.2); }
  50%      { box-shadow: 0 0 0 5px #060606, 0 0 0 9px rgba(228,207,156,.5), 0 0 42px rgba(228,207,156,.45); }
}

/* ======= LOVE ======= */
.v2-sc-love {
  background: #0b0607;
  color: #fff7ee;
  border-color: rgba(255,200,150,.12);
}
.v2-sc-love:hover { border-color: rgba(255,180,130,.38); }
.v2-sc-love .v2-sc-map {
  background:
    radial-gradient(circle at 56% 42%, rgba(255,180,120,.12) 0%, transparent 40%),
    repeating-linear-gradient(0deg,  rgba(255,210,160,.05) 0, rgba(255,210,160,.05) 1px, transparent 1px, transparent 54px),
    repeating-linear-gradient(90deg, rgba(255,210,160,.05) 0, rgba(255,210,160,.05) 1px, transparent 1px, transparent 54px),
    #0b0607;
}
.v2-sc-love .v2-r   { background: rgba(255,210,160,.52); }
.v2-sc-love .v2-rh1 { background: rgba(255,210,160,.68); }
.v2-sc-love .v2-b   { background: rgba(255,180,120,.05); border: 1px solid rgba(255,180,120,.16); }
.v2-sc-love .v2-heart,
.v2-sc-love .v2-heart::before,
.v2-sc-love .v2-heart::after { background: #fff7ee; }
.v2-sc-love .v2-heart {
  box-shadow: 0 0 28px rgba(255,180,120,.35);
  animation: v2HeartBeat 1.8s ease-in-out infinite;
}
.v2-sc-love .v2-sc-info { border-top: 1px solid rgba(255,200,150,.1); }
@keyframes v2HeartBeat {
  0%,100% { transform: translate(-50%, -50%) rotate(45deg) scale(1); }
  20%      { transform: translate(-50%, -50%) rotate(45deg) scale(1.18); }
  40%      { transform: translate(-50%, -50%) rotate(45deg) scale(1); }
  60%      { transform: translate(-50%, -50%) rotate(45deg) scale(1.1); }
  80%      { transform: translate(-50%, -50%) rotate(45deg) scale(1); }
}

/* Map shimmer on hover */
.v2-sc .v2-sc-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, transparent 45%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.v2-sc:hover .v2-sc-map::after { opacity: 1; }

/* Grid layout (already defined in v2-styles-grid) */
@media (max-width: 1040px) {
  .v2-sc-map { height: 180px; }
}
@media (max-width: 680px) {
  .v2-sc-map { height: 155px; }
  .v2-b1, .v2-b2, .v2-b3, .v2-b4 { transform: scale(.85) !important; }
}


/* =============================================
   MEMORY PAGE v3 — Premium personal page
   ============================================= */

/* Reset old mc-* */
.mc-page, .mc-card, .mc-bg, .mc-outer { display: none !important; }
.v2-mem-hero, .v2-mem-body, .v2-mem-downloads { display: none !important; }

/* ── ROOT ── */
.mp { --mp-gold: #c9a86a; --mp-gold2: #e4cf9c; }

/* ── HERO ── */
.mp-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-bottom: 64px;
  background:
    radial-gradient(ellipse at 60% 20%, rgba(201,168,106,.14), transparent 48%),
    var(--bg);
}
.mp-hero-photo { min-height: 94vh; }

/* Background photo */
.mp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mp-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.32) saturate(.6);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.mp-hero:hover .mp-hero-bg img { transform: scale(1.0); }
.mp-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,.18) 0%, rgba(5,5,5,.72) 70%, #050505 100%);
}

/* No-photo glow */
.mp-hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 62% 28%, rgba(201,168,106,.18), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,106,.08), transparent 40%);
  animation: v2GlowBreath 8s ease-in-out infinite;
  pointer-events: none;
}

/* Brand */
.mp-hero-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  height: 100%;
  padding-top: 80px;
}
.mp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: .72;
}
.mp-brand-logo {
  width: 28px; height: 28px;
  object-fit: contain;
  filter: invert(1) brightness(1.1);
}
.mp-brand span {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mp-gold2);
}

/* Hero text */
.mp-hero-text { display: grid; gap: 16px; }
.mp-date {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.mp-date-d {
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 700;
  line-height: 1;
  color: var(--mp-gold);
}
.mp-date-my {
  font-size: clamp(18px, 2.4vw, 28px);
  color: rgba(247,242,232,.7);
  font-weight: 300;
  letter-spacing: .04em;
}
.mp-title {
  font-size: clamp(52px, 8.5vw, 112px);
  line-height: .91;
  font-weight: 700;
  margin: 0;
  word-break: break-word;
}
.mp-coords {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(247,242,232,.44);
  font-size: 14px;
  letter-spacing: .18em;
}
.mp-coords svg { color: var(--mp-gold); opacity: .7; flex-shrink: 0; }

/* ── STORY ── */
.mp-story-section {
  padding: 80px 0;
}
.mp-story-wrap { max-width: 860px; }
.mp-story-card {
  position: relative;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid rgba(228,207,156,.2);
  background:
    radial-gradient(ellipse at 10% 0%, rgba(228,207,156,.1), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  box-shadow: 0 40px 120px rgba(0,0,0,.36), inset 0 1px 0 rgba(228,207,156,.15);
}
.mp-story-deco {
  position: absolute;
  top: -20px;
  left: clamp(28px, 4vw, 52px);
  font-size: 140px;
  line-height: 1;
  color: var(--mp-gold);
  opacity: .18;
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}
.mp-story-text {
  position: relative;
  font-size: clamp(19px, 2.4vw, 26px);
  line-height: 1.75;
  color: rgba(255,255,255,.88);
  font-weight: 300;
  letter-spacing: .01em;
}

/* ── PLACE / MAP ── */
.mp-place-section { padding: 0 0 80px; }
.mp-place-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.mp-place-card {
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.03);
  overflow: hidden;
}
.mp-map-frame {
  position: relative;
  overflow: hidden;
  background: #050505;
}
.mp-map-frame img {
  width: 100%; display: block;
  transition: transform .5s ease;
}
.mp-place-card:hover .mp-map-frame img { transform: scale(1.03); }
.mp-map-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(228,207,156,.07), transparent 60%);
  pointer-events: none;
}
.mp-place-meta {
  padding: 20px;
  display: grid;
  gap: 10px;
}
.mp-place-label {
  color: var(--mp-gold2);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.mp-place-coords {
  font-size: 16px;
  color: rgba(247,242,232,.8);
  letter-spacing: .1em;
}
.mp-place-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mp-place-chips span {
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: rgba(247,242,232,.6);
  font-size: 12px;
  letter-spacing: .06em;
}

/* Mockup */
.mp-mockup-card {
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(0,0,0,.22);
  overflow: hidden;
}
.mp-mockup-card img {
  width: 100%; display: block;
  transition: transform .5s ease;
}
.mp-mockup-card:hover img { transform: scale(1.02); }
.mp-mockup-label {
  padding: 14px 18px;
  color: rgba(247,242,232,.44);
  font-size: 13px;
  letter-spacing: .08em;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ── PHOTO ── */
.mp-photo-section { padding: 0 0 80px; }
.mp-photo-wrap {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  max-height: 600px;
}
.mp-photo-img {
  width: 100%; display: block;
  object-fit: cover;
  max-height: 600px;
  filter: brightness(.94);
  transition: transform .6s ease;
}
.mp-photo-wrap:hover .mp-photo-img { transform: scale(1.02); }

/* ── SHARE / QR ── */
.mp-share-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,.065);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,168,106,.08), transparent 44%),
    rgba(255,255,255,.012);
}
.mp-share-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.mp-share-text h2.mp-share-title {
  font-size: clamp(32px, 4vw, 52px);
  margin: 10px 0 14px;
  line-height: 1.05;
}
.mp-share-text p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.mp-share-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.mp-qr-block {
  display: grid;
  gap: 10px;
  justify-items: center;
}
.mp-qr-img {
  width: 160px; height: 160px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  border: 1px solid rgba(228,207,156,.24);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.mp-qr-hint {
  color: rgba(247,242,232,.4);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ── WORKSHOP ── */
.mp-workshop {
  padding: 0 0 60px;
}
.mp-ws-details {
  border: none;
  background: none;
}
.mp-ws-details summary {
  color: rgba(247,242,232,.22);
  font-size: 12px;
  letter-spacing: .1em;
  cursor: pointer;
  padding: 12px 0;
  list-style: none;
  user-select: none;
  transition: color .2s ease;
}
.mp-ws-details summary:hover { color: rgba(247,242,232,.44); }
.mp-ws-details summary::before { content: "↓ "; }
.mp-ws-details[open] summary::before { content: "↑ "; }
.mp-ws-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px 0;
}
.mp-ws-grid a {
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: rgba(247,242,232,.4);
  font-size: 12px;
  transition: color .2s ease, border-color .2s ease;
}
.mp-ws-grid a:hover { color: rgba(247,242,232,.7); border-color: rgba(255,255,255,.16); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .mp-hero { min-height: 70vh; }
  .mp-hero-photo { min-height: 80vh; }
  .mp-place-wrap { grid-template-columns: 1fr; }
  .mp-share-wrap { grid-template-columns: 1fr; gap: 36px; }
  .mp-qr-block { justify-items: start; }
}
@media (max-width: 560px) {
  .mp-hero { min-height: 60vh; }
  .mp-title { font-size: clamp(42px, 11vw, 72px); }
  .mp-story-card { padding: 28px; }
  .mp-story-deco { font-size: 90px; top: -12px; }
  .mp-story-text { font-size: 17px; }
  .mp-qr-img { width: 130px; height: 130px; }
}


/* =============================================
   OWNER BANNER — after memory creation
   ============================================= */
.mp-owner-bar {
  position: relative;
  z-index: 50;
  background:
    linear-gradient(90deg, rgba(228,207,156,.16), rgba(201,168,106,.08));
  border-bottom: 1px solid rgba(228,207,156,.3);
  padding: 14px 0;
}
.mp-owner-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.mp-owner-bar-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.mp-owner-bar-icon {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  background: var(--gold);
  color: #050505;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}
.mp-owner-bar-text strong {
  color: var(--gold-2);
  font-size: 14px;
}
.mp-owner-bar-text span {
  color: rgba(247,242,232,.7);
  font-size: 13px;
}
.mp-owner-bar-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mp-owner-edit-btn {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(228,207,156,.5);
  background: rgba(228,207,156,.14);
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 600;
  transition: background .2s ease;
}
.mp-owner-edit-btn:hover { background: rgba(228,207,156,.24); }
.mp-owner-copy-btn {
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(247,242,232,.78);
  font-size: 13px;
  cursor: pointer;
  transition: background .2s ease;
}
.mp-owner-copy-btn:hover { background: rgba(255,255,255,.1); }
@media (max-width: 640px) {
  .mp-owner-bar-inner { flex-direction: column; align-items: flex-start; }
}


/* =============================================
   QUICK RESULT PAGE v3
   ============================================= */
.qr-page { padding-bottom: 80px; }

/* Hero */
.qr-hero {
  position: relative;
  padding: 64px 0 52px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 60% 0%, rgba(201,168,106,.14), transparent 44%),
    var(--bg);
  border-bottom: 1px solid rgba(255,255,255,.065);
}
.qr-hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,106,.09), transparent 60%);
  animation: v2GlowBreath 8s ease-in-out infinite;
  pointer-events: none;
}
.qr-hero-inner { position: relative; z-index: 1; }
.qr-hero-title {
  font-size: clamp(40px, 6vw, 76px);
  line-height: .96;
  margin: 12px 0 18px;
  font-weight: 700;
}
.qr-coords {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(247,242,232,.48);
  font-size: 14px;
  letter-spacing: .16em;
}
.qr-coords svg { color: var(--gold); opacity: .7; }

/* Body layout */
.qr-body {
  padding-top: 48px;
  display: grid;
  gap: 36px;
}

/* Visuals */
.qr-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.qr-mockup-wrap {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.2);
  overflow: hidden;
}
.qr-mockup-wrap img {
  width: 100%; display: block;
  transition: transform .4s ease;
}
.qr-mockup-wrap:hover img { transform: scale(1.03); }
.qr-map-wrap {
  border: 1px solid rgba(255,255,255,.1);
  background: #050505;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.qr-map-wrap img {
  width: 100%; display: block; flex: 1;
  object-fit: cover;
  transition: transform .4s ease;
}
.qr-map-wrap:hover img { transform: scale(1.03); }
.qr-map-wrap span {
  padding: 10px 14px;
  color: rgba(247,242,232,.44);
  font-size: 12px;
  letter-spacing: .08em;
  border-top: 1px solid rgba(255,255,255,.07);
}

/* Downloads */
.qr-downloads { }
.qr-dl-head {
  color: var(--gold-2);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.qr-dl-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.qr-dl-item {
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.03);
  padding: 14px;
  display: grid;
  gap: 6px;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.qr-dl-item:hover {
  border-color: rgba(228,207,156,.32);
  background: rgba(201,168,106,.06);
  transform: translateY(-2px);
}
.qr-dl-ext {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 700;
}
.qr-dl-item strong {
  color: rgba(247,242,232,.84);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

/* Upgrade section */
.qr-upgrade {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(228,207,156,.22);
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201,168,106,.12), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
.qr-upgrade-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(228,207,156,.1), transparent 50%);
  pointer-events: none;
}
.qr-upgrade-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
}
.qr-upgrade-title {
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1.05;
  margin: 10px 0 14px;
}
.qr-upgrade p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
  margin: 0;
}
.qr-upgrade-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}

@media (max-width: 860px) {
  .qr-visuals { grid-template-columns: 1fr; }
  .qr-dl-grid { grid-template-columns: repeat(3, 1fr); }
  .qr-upgrade-inner { grid-template-columns: 1fr; }
  .qr-upgrade-actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .qr-dl-grid { grid-template-columns: 1fr 1fr; }
}


/* =============================================
   NO-PHOTO MEMORY PAGE — beautiful map layout
   ============================================= */

.mp-nophoto {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 0 0 80px;
}

/* Blurred map background */
.mp-nophoto-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.mp-nophoto-bg-map {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.2) saturate(.4) blur(18px);
  transform: scale(1.08);
}
.mp-nophoto-bg-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(5,5,5,.92) 0%, rgba(5,5,5,.72) 50%, rgba(5,5,5,.88) 100%);
}
.mp-nophoto-bg-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 72% 40%, rgba(201,168,106,.16), transparent 44%),
    radial-gradient(ellipse at 20% 70%, rgba(201,168,106,.08), transparent 36%);
  animation: v2GlowBreath 9s ease-in-out infinite;
}

/* Two-column inner layout */
.mp-nophoto-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: 100vh;
  padding: 80px 0 80px;
}

/* Left: text */
.mp-nophoto-text {
  display: grid;
  gap: 20px;
  align-content: center;
}
.mp-date-nophoto { margin-top: 8px; }
.mp-title-nophoto {
  font-size: clamp(46px, 7vw, 96px);
  line-height: .92;
  margin: 0;
}
.mp-nophoto-story {
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.68;
  color: rgba(255,255,255,.78);
  font-weight: 300;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mp-nophoto-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mp-nophoto-chips span {
  padding: 5px 13px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: rgba(247,242,232,.55);
  font-size: 12px;
  letter-spacing: .06em;
}

/* Right: map + mockup */
.mp-nophoto-visuals {
  display: grid;
  gap: 14px;
}
.mp-nophoto-map {
  position: relative;
}
.mp-nophoto-map-inner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(228,207,156,.26);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 40px 120px rgba(0,0,0,.6),
    0 0 80px rgba(201,168,106,.08);
  transition: transform .4s ease, box-shadow .4s ease;
}
.mp-nophoto-map-inner:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset, 0 50px 140px rgba(0,0,0,.7), 0 0 100px rgba(201,168,106,.12);
}
.mp-nophoto-map-inner img {
  width: 100%; display: block;
}
.mp-nophoto-map-shine {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, transparent 40%, rgba(0,0,0,.1) 100%);
  pointer-events: none;
}
.mp-nophoto-map-label {
  margin-top: 10px;
  color: rgba(247,242,232,.38);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
}
.mp-nophoto-mockup {
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(0,0,0,.2);
  overflow: hidden;
}
.mp-nophoto-mockup img {
  width: 100%; display: block;
  transition: transform .4s ease;
}
.mp-nophoto-mockup:hover img { transform: scale(1.03); }
.mp-nophoto-mockup-label {
  padding: 10px 14px;
  color: rgba(247,242,232,.36);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
}

/* Mobile */
@media (max-width: 860px) {
  .mp-nophoto-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 100px 0 60px;
  }
  .mp-nophoto-visuals { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .mp-title-nophoto { font-size: clamp(38px, 10vw, 64px); }
  .mp-nophoto-visuals { grid-template-columns: 1fr; }
}


/* =============================================
   STYLE CARDS in configurator — fix overflow
   ============================================= */

/* Override psc-info to prevent overflow */
.psc-info {
  display: grid;
  gap: 2px;
  overflow: hidden;
  padding-top: 6px;
}
.psc-info .style-num {
  color: rgba(228,207,156,.7);
  font-size: 10px;
  letter-spacing: .16em;
  line-height: 1;
}
.psc-info strong {
  font-size: 13px !important;
  line-height: 1.15 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.psc-info em {
  font-size: 10px !important;
  line-height: 1.3 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: .7;
  font-style: normal;
}

/* Make style cards taller to give text room */
.premium-style-card {
  min-height: 200px !important;
}
.premium-style-card .choice-art {
  min-height: 80px !important;
  flex-shrink: 0;
}

/* Responsive: 3 columns on smaller screens */
@media (max-width: 1100px) {
  .premium-style-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 680px) {
  .premium-style-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}


/* =============================================
   QR FRAME & SHARE SECTION POLISH
   ============================================= */

/* Share section - stronger visual */
.mp-share-section {
  padding: 90px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,168,106,.09), transparent 44%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,106,.05), transparent 36%),
    rgba(255,255,255,.013);
}
.mp-share-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.mp-share-text .eyebrow { margin-bottom: 10px; }
.mp-share-title {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  margin: 0 0 16px;
}
.mp-share-text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 560px;
}
.mp-share-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* QR block */
.mp-qr-block {
  display: grid;
  gap: 12px;
  justify-items: center;
}

/* QR frame with corner decorations */
.mp-qr-frame {
  position: relative;
  padding: 12px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(228,207,156,.28),
    0 30px 80px rgba(0,0,0,.5),
    0 0 60px rgba(201,168,106,.1);
  transition: transform .3s ease, box-shadow .3s ease;
}
.mp-qr-frame:hover {
  transform: scale(1.03) translateY(-3px);
  box-shadow: 0 0 0 1px rgba(228,207,156,.44), 0 40px 100px rgba(0,0,0,.6), 0 0 80px rgba(201,168,106,.18);
}
.mp-qr-img {
  width: 172px; height: 172px;
  display: block;
  object-fit: contain;
}

/* Corner accents */
.mp-qr-corners { position: absolute; inset: -1px; pointer-events: none; }
.mp-qrc {
  position: absolute;
  width: 18px; height: 18px;
  border-color: var(--gold);
  border-style: solid;
}
.mp-qrc-tl { top: -2px; left: -2px; border-width: 2px 0 0 2px; }
.mp-qrc-tr { top: -2px; right: -2px; border-width: 2px 2px 0 0; }
.mp-qrc-bl { bottom: -2px; left: -2px; border-width: 0 0 2px 2px; }
.mp-qrc-br { bottom: -2px; right: -2px; border-width: 0 2px 2px 0; }

.mp-qr-hint {
  color: rgba(247,242,232,.36);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mp-qr-dl-link {
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: .06em;
  opacity: .8;
  transition: opacity .2s ease;
}
.mp-qr-dl-link:hover { opacity: 1; }

/* Download QR button */
.mp-share-actions .btn-primary svg { transition: transform .2s ease; }
.mp-share-actions .btn-primary:hover svg { transform: translateY(2px); }

@media (max-width: 860px) {
  .mp-share-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mp-qr-block { justify-items: flex-start; }
}
@media (max-width: 560px) {
  .mp-qr-img { width: 148px; height: 148px; }
}


/* =============================================
   GENERAL DETAIL PAGE POLISH
   ============================================= */

/* Story card — stronger visual */
.mp-story-card {
  position: relative;
  overflow: hidden;
}
.mp-story-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228,207,156,.5) 30%, rgba(228,207,156,.5) 70%, transparent);
}

/* Place section tighter */
.mp-place-section { padding: 0 0 72px; }
.mp-place-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

/* Map frame hover */
.mp-map-frame {
  overflow: hidden;
  cursor: pointer;
}
.mp-map-frame img { transition: transform .5s ease; }
.mp-place-card:hover .mp-map-frame img { transform: scale(1.04); }

/* Mockup card  */
.mp-mockup-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(0,0,0,.2);
}
.mp-mockup-card img {
  width: 100%; display: block;
  transition: transform .5s ease;
}
.mp-mockup-card:hover img { transform: scale(1.03); }
.mp-mockup-label {
  padding: 12px 16px;
  color: rgba(247,242,232,.4);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* Hero body full height */
.mp-hero-body {
  height: 100%;
  min-height: calc(88vh - 80px);
}

@media (max-width: 860px) {
  .mp-place-wrap { grid-template-columns: 1fr; }
  .mp-share-section { padding: 60px 0; }
}

/* ================================================================
   PSC STYLE CARD ART — полный редизайн превью карточек стилей
   2026-06-06
   ================================================================ */

/* Высота арт-блока */
.psc-art {
  position: relative !important;
  height: 100px !important;
  flex-shrink: 0 !important;
  overflow: hidden !important;
  border-bottom: 1px solid rgba(255,255,255,.05) !important;
}

/* Многослойная карта: сетка + 4 дороги */
.psc-art::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    repeating-linear-gradient(90deg, var(--psc-line) 0, var(--psc-line) 1px, transparent 1px, transparent 22px),
    repeating-linear-gradient(0deg,  var(--psc-line) 0, var(--psc-line) 1px, transparent 1px, transparent 18px),
    linear-gradient(134deg, transparent 32%, var(--psc-road)  33%, var(--psc-road)  36.5%, transparent 37.5%),
    linear-gradient(46deg,  transparent 47%, var(--psc-road2) 48%, var(--psc-road2) 50.5%, transparent 51.5%),
    linear-gradient(0deg,   transparent 44%, var(--psc-road)  45%, var(--psc-road)  55%,   transparent 56%),
    linear-gradient(90deg,  transparent 65%, var(--psc-road2) 66%, var(--psc-road2) 68.5%, transparent 69.5%),
    radial-gradient(circle at 50% 50%, var(--psc-center-glow, transparent) 0%, transparent 48%),
    var(--psc-bg) !important;
}

/* Пин: двойное кольцо — чёткий и заметный */
.psc-art::after {
  content: '' !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background: var(--psc-pin) !important;
  transform: translate(-50%, -50%) !important;
  box-shadow:
    0 0 0 3px var(--psc-bg),
    0 0 0 5px var(--psc-pin),
    0 0 12px var(--psc-pin-glow, var(--psc-pin)) !important;
  outline: none !important;
  z-index: 2 !important;
}

/* Цветовые переменные для каждого стиля */
.psc-premium_dark {
  --psc-bg: #050505;
  --psc-line: rgba(246,241,232,.08);
  --psc-road: rgba(246,241,232,.58);
  --psc-road2: rgba(246,241,232,.26);
  --psc-pin: rgba(246,241,232,.96);
  --psc-pin-glow: rgba(246,241,232,.18);
  --psc-center-glow: rgba(246,241,232,.05);
}
.psc-minimal {
  --psc-bg: #f3efe4;
  --psc-line: rgba(17,17,17,.065);
  --psc-road: rgba(17,17,17,.52);
  --psc-road2: rgba(17,17,17,.22);
  --psc-pin: rgba(17,17,17,.88);
  --psc-pin-glow: rgba(17,17,17,.12);
  --psc-center-glow: rgba(17,17,17,.04);
}
.psc-skeleton {
  --psc-bg: #ffffff;
  --psc-line: rgba(5,5,5,.055);
  --psc-road: rgba(5,5,5,.72);
  --psc-road2: rgba(5,5,5,.30);
  --psc-pin: rgba(5,5,5,.92);
  --psc-pin-glow: transparent;
  --psc-center-glow: rgba(5,5,5,.03);
}
.psc-coordinate {
  --psc-bg: #040404;
  --psc-line: rgba(228,207,156,.075);
  --psc-road: rgba(228,207,156,.64);
  --psc-road2: rgba(228,207,156,.26);
  --psc-pin: #c9a86a;
  --psc-pin-glow: rgba(201,168,106,.55);
  --psc-center-glow: rgba(201,168,106,.08);
}
.psc-love {
  --psc-bg: #070606;
  --psc-line: rgba(255,247,238,.065);
  --psc-road: rgba(255,247,238,.44);
  --psc-road2: rgba(255,247,238,.18);
  --psc-pin: rgba(255,220,200,.96);
  --psc-pin-glow: rgba(255,180,150,.4);
  --psc-center-glow: rgba(255,160,130,.06);
}

/* Coordinate: усиленный золотой glow пина */
.psc-coordinate .psc-art::after {
  box-shadow:
    0 0 0 3px #040404,
    0 0 0 5px #c9a86a,
    0 0 16px rgba(201,168,106,.65),
    0 0 28px rgba(201,168,106,.22) !important;
}

/* Love: скрываем круглый пин, показываем SVG-сердце */
.psc-love .psc-art::after {
  display: none !important;
}

.psc-heart-svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -58%);
  color: var(--psc-pin);
  z-index: 2;
  filter: drop-shadow(0 0 6px rgba(255,180,140,.5));
}

