/* =============================================
   Lucifer Nails — Press Ons Page
   ============================================= */

/* ---------- Hero ---------- */
.po-hero {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 32px 120px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 880px) {
  .po-hero { grid-template-columns: 1fr; padding-top: 130px; padding-bottom: 100px; gap: 48px; }
}

/* Interactive scroll cue variant — same visual language as homepage,
   but clickable and with a subtle hover. */
.scroll-cue.scroll-cue--link {
  pointer-events: auto;
  cursor: pointer;
  color: var(--ink-soft);
  transition: color 0.3s ease;
  text-decoration: none;
}
.scroll-cue.scroll-cue--link:hover { color: var(--accent); }
.scroll-cue.scroll-cue--link:hover::after { background: var(--accent); opacity: 0.8; }
.scroll-cue.scroll-cue--link::after { transition: background 0.3s ease, opacity 0.3s ease; }

.po-hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 76px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 8px 0 28px;
  max-width: 12ch;
}
.po-hero-title em {
  font-family: var(--font-highlight);
  font-weight: 800;
  font-style: italic;
  color: var(--accent);
  font-size: 1.15em;
  line-height: 0.95;
  letter-spacing: -0.01em;
  vertical-align: -0.01em;
}

.po-hero-lede {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-bottom: 36px;
}

.po-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.po-hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-darker);
}
.po-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Sheer overlay — softens the image and ties it to the brand palette */
.po-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 5, 127, 0.18) 0%, transparent 35%, transparent 70%, rgba(49, 7, 88, 0.45) 100%),
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(255, 5, 127, 0.10) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: soft-light;
}
/* Subtle light grain on top to take any over-saturation off the image */
.po-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.07;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.po-hero-image-tag {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 14px;
  color: #fff;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ---------- Section frame ---------- */
.po-section {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px;
}

.po-section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.po-section-head .section-eyebrow {
  justify-content: center;
}
.po-section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.po-section-title em {
  font-family: var(--font-highlight);
  font-weight: 800;
  font-style: italic;
  color: var(--accent);
  font-size: 1.15em;
  line-height: 0.95;
  letter-spacing: -0.01em;
  vertical-align: -0.01em;
}
.po-section-sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto;
}

/* ---------- Showcase grid ---------- */
.po-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .po-grid { grid-template-columns: 1fr; }
}

.po-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  margin: 0;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), border-color 0.5s;
}
.po-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.po-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(.2,.8,.2,1);
}
.po-card:hover > img { transform: scale(1.04); }

/* Caption: glass bar matching the hero tag, sits at bottom */
.po-card figcaption {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
}
.po-card-label {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 14px;
  color: var(--accent);
  text-shadow: 0 0 12px rgba(255, 5, 127, 0.45);
}
.po-card-desc {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.45;
  color: #fff;
}

/* Crossfade variant: tilted is the default, aligned fades in on hover */
.po-card--crossfade {
  cursor: pointer;
}
.po-card--crossfade .po-fade-back,
.po-card--crossfade .po-fade-front {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1);
}
.po-card--crossfade .po-fade-front {
  /* tilted = default visible */
  opacity: 1;
  z-index: 1;
}
.po-card--crossfade .po-fade-back {
  /* aligned = revealed on hover */
  opacity: 0;
  z-index: 2;
}
.po-card--crossfade:hover .po-fade-front,
.po-card--crossfade:focus .po-fade-front,
.po-card--crossfade.is-revealed .po-fade-front {
  opacity: 0;
}
.po-card--crossfade:hover .po-fade-back,
.po-card--crossfade:focus .po-fade-back,
.po-card--crossfade.is-revealed .po-fade-back {
  opacity: 1;
}
/* zoom both layers gently together for a unified feel */
.po-card--crossfade:hover .po-fade-front,
.po-card--crossfade:hover .po-fade-back {
  transform: scale(1.03);
}

/* Placeholder card */
.po-card--placeholder {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(45deg,
      rgba(255, 5, 127, 0.04) 0 12px,
      transparent 12px 24px),
    var(--paper);
}
.po-card--placeholder .po-placeholder-art {
  color: var(--accent);
  opacity: 0.6;
}
.po-card--placeholder figcaption {
  background: linear-gradient(180deg, transparent 0%, rgba(243, 231, 253, 0.95) 70%);
  color: var(--ink);
}
.po-card--placeholder .po-card-desc {
  color: var(--ink-soft);
}

/* ---------- FAQ ---------- */
.po-section--faq {
  max-width: 880px;
}
.po-faq {
  border-top: 1px solid var(--line);
}
.po-faq-item {
  border-bottom: 1px solid var(--line);
}
.po-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 28px 8px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  transition: padding-left 0.3s ease, color 0.3s ease;
}
.po-faq-item summary::-webkit-details-marker { display: none; }
.po-faq-item summary:hover { padding-left: 12px; color: var(--accent); }

.po-faq-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--accent);
}
.po-faq-q {
  font-family: var(--font-ui);
  font-size: clamp(18px, 2.1vw, 22px);
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: color 0.3s;
}
.po-faq-item summary:hover .po-faq-q { color: var(--accent); }
.po-faq-toggle {
  font-family: var(--font-ui);
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.3s ease;
  width: 24px;
  text-align: center;
}
.po-faq-item[open] .po-faq-toggle { transform: rotate(45deg); }

.po-faq-a {
  padding: 4px 8px 32px 60px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 70ch;
}
@media (max-width: 600px) {
  .po-faq-a { padding-left: 8px; }
}
.po-faq-a p { margin-bottom: 12px; }
.po-faq-a ol,
.po-faq-a ul {
  margin: 12px 0 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.po-faq-a strong { color: var(--ink); font-weight: 500; }
.po-faq-a a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.po-faq-tip,
.po-faq-warn {
  margin-top: 14px;
  padding: 14px 18px;
  border-left: 2px solid var(--accent);
  background: rgba(255, 5, 127, 0.05);
  font-size: 15px;
  line-height: 1.55;
}
.po-faq-warn {
  border-left-color: #b388eb;
  background: rgba(179, 136, 235, 0.08);
}
.placeholder {
  background: var(--accent-soft);
  padding: 1px 6px;
  border-radius: 2px;
  font-style: italic;
  font-size: 0.95em;
}

/* ---------- Order form ---------- */
.po-section--order {
  max-width: 760px;
}
.po-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.po-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 600px) {
  .po-form-row { grid-template-columns: 1fr; }
}
.po-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.po-label {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--ink-soft);
}
.po-label-meta {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 11px;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-left: 6px;
  font-style: italic;
}
.po-field input[type="text"],
.po-field input[type="email"],
.po-field textarea {
  font-family: var(--font-body);
  font-size: 17px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: border-color 0.3s, background 0.3s;
}
.po-field input:focus,
.po-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.po-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}

/* File upload — custom button replaces native */
.po-upload {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.po-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.po-upload-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.po-upload-button:hover {
  background: var(--ink);
  color: var(--bg);
}
.po-upload-button svg { flex-shrink: 0; }
.po-upload-status {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
}

.po-form-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 12px;
}
@media (max-width: 600px) {
  .po-form-footer { grid-template-columns: 1fr; }
}
.po-form-consent {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.po-form-consent a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Inline info block shown above the form fields, so it can't be missed. */
.po-form-info {
  margin-bottom: 32px;
  padding: 18px 22px;
  border-left: 2px solid var(--accent);
  background: rgba(255, 5, 127, 0.06);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
}
.po-form-info strong {
  color: var(--accent);
  font-weight: 500;
}

.po-form-notice {
  margin-top: 6px;
  padding: 18px 22px;
  border: 1px solid var(--accent);
  background: rgba(255, 5, 127, 0.06);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}
.po-form-notice a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* Success variant — green-ish tone but staying on-brand */
.po-form-notice--success {
  border-color: #7bc47f;
  background: rgba(123, 196, 127, 0.10);
}
/* Error variant — a warmer red-ish */
.po-form-notice--error {
  border-color: #d64545;
  background: rgba(214, 69, 69, 0.08);
}

/* ---------- Active nav item ---------- */
.nav a.active {
  color: var(--accent);
}
.nav a.active::after {
  width: 100%;
  left: 0;
}
