/*
Theme Name: YourVulva V3
Description: Clean-slate concept theme with a completely new layout architecture and visual language.
Author: YourVulva Team
Version: 4.1
License: GPL v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: yourvulva-v3
Tags: immersive, cinematic, clean-slate, responsive
*/

:root {
  --bg: #07090c;
  --bg-2: #0d131a;
  --surface: #121922;
  --surface-2: #17202b;
  --text: #ecf1f6;
  --muted: #a8b4c0;
  --line: rgba(255,255,255,.14);
  --line-soft: rgba(255,255,255,.08);
  --accent: #62d9ff;
  --accent-2: #8dffcf;
  --ok: #8dffcf;
  --err: #ff9fa8;
  --maxw: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.56;
  background:
    radial-gradient(1000px 700px at -10% -10%, rgba(98,217,255,.09), transparent 70%),
    radial-gradient(900px 600px at 110% 10%, rgba(141,255,207,.08), transparent 70%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

.site-header,
.site-footer { display: none; }

.nova-wrap {
  width: min(100% - 2.4rem, var(--maxw));
  margin-inline: auto;
}

.nova-site { overflow: clip; }

.nova-intro {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  border-bottom: 1px solid var(--line-soft);
}

.nova-intro-video {
  position: absolute;
  top: clamp(1rem, 2.4vw, 1.8rem);
  bottom: clamp(1rem, 2.4vw, 1.8rem);
  left: 50%;
  width: min(calc(100% - 3.4rem), 1320px);
  transform: translateX(-50%);
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(170, 214, 255, .18);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .5);
}

.nova-intro-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,11,14,.35) 0%, rgba(8,11,14,.82) 72%, rgba(7,9,12,.97) 100%),
    linear-gradient(120deg, rgba(98,217,255,.12), rgba(141,255,207,.07));
}

.nova-intro-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .64;
  filter: contrast(1.08) saturate(1.05);
}

.nova-intro-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 1rem;
  align-items: end;
  padding: 2.6rem 0 2rem;
}

.nova-intro-main {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18,25,34,.9), rgba(23,32,44,.92));
  border-radius: 16px;
  padding: 1.2rem;
}

.nova-intro-aside,
.nova-card,
.nova-stage,
.nova-form,
.nova-footer,
.nova-shot {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18,25,34,.9), rgba(23,32,44,.92));
  border-radius: 14px;
}

.nova-intro-aside {
  padding: 1rem;
}

.nova-intro-aside h2 {
  margin: 0 0 .6rem;
  font-size: 1.15rem;
}

.nova-intro-aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .5rem;
}

.nova-intro-aside li {
  display: grid;
  gap: .12rem;
  border-bottom: 1px dashed var(--line-soft);
  padding-bottom: .45rem;
}

.nova-intro-aside li:last-child { border-bottom: 0; padding-bottom: 0; }
.nova-intro-aside strong { font-size: .9rem; color: var(--text); }
.nova-intro-aside span { font-size: .88rem; color: var(--muted); }

.nova-eyebrow {
  margin: 0 0 .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  font-weight: 650;
  color: var(--accent-2);
}

h1,h2,h3 { line-height: 1.07; margin: 0 0 .72rem; }
h1 { font-size: clamp(2.25rem, 6.3vw, 5.4rem); max-width: 12ch; }
h2 { font-size: clamp(1.8rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.02rem, 2vw, 1.28rem); }

.nova-intro-main p { margin: 0; color: #d2dee9; max-width: 64ch; }

.nova-cta-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .64rem;
}

.nova-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: .72rem 1.02rem;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 640;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nova-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.4); }
.nova-btn-primary { color: #06212b; border-color: transparent; background: linear-gradient(110deg, var(--accent), var(--accent-2)); }
.nova-btn-ghost { background: rgba(255,255,255,.04); }

.nova-section {
  padding: clamp(2.7rem, 6vw, 6rem) 0;
  border-bottom: 1px solid var(--line-soft);
}

.nova-section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}

.nova-dialogue {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}

.nova-dialogue header h2 {
  font-size: clamp(1.62rem, 2.4vw, 2.58rem);
  line-height: 1.1;
}

.nova-card { padding: 1rem; }
.nova-card p,
.nova-card li { color: #d4dee8; }

.nova-card-quote {
  border-left: 3px solid var(--accent);
}

.nova-section-head { margin-bottom: .85rem; }

.nova-pipeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}

.nova-stage { padding: .95rem; }

.nova-stage span {
  display: inline-flex;
  width: 1.9rem;
  height: 1.9rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #06212b;
  font-weight: 700;
  font-size: .8rem;
  margin-bottom: .7rem;
  background: linear-gradient(110deg, var(--accent), var(--accent-2));
}

.nova-stage p { margin: 0; color: var(--muted); }

.nova-studio-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 1rem;
  align-items: start;
}

.nova-studio-copy p { color: var(--muted); }

.nova-form-shell { width: 100%; }

.nova-alert {
  border-radius: 12px;
  padding: .8rem .95rem;
  margin-bottom: .9rem;
  border: 1px solid var(--line);
}

.nova-alert-success { color: var(--ok); background: rgba(80,180,120,.12); }
.nova-alert-error { color: var(--err); background: rgba(180,60,80,.12); }

.nova-form { padding: .95rem; }

.nova-form label {
  display: block;
  text-align: left;
  margin-bottom: .72rem;
}

.nova-form span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: .33rem;
}

.nova-form input,
.nova-form select,
.nova-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #101722;
  color: var(--text);
  padding: .66rem .72rem;
  font: inherit;
}

.nova-form input:focus,
.nova-form select:focus,
.nova-form textarea:focus {
  outline: none;
  border-color: rgba(98,217,255,.76);
  box-shadow: 0 0 0 3px rgba(98,217,255,.2);
}

.nova-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .72rem;
}

.nova-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.nova-asset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}

.nova-asset-grid ul { margin: .4rem 0 0 1rem; padding: 0; }
.nova-asset-grid li { margin-bottom: .4rem; }

.nova-note { margin-top: .9rem; color: var(--muted); font-size: .95rem; }

.nova-footer {
  width: min(100% - 2.4rem, var(--maxw));
  margin: 1.2rem auto 2.4rem;
  padding: .95rem;
}

.nova-footer-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.nova-footer p { margin: 0; color: var(--muted); max-width: 72ch; }

/* Gallery */
.nova-gallery-page {
  padding: clamp(2rem, 6vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}

.nova-gallery-head {
  text-align: center;
  margin-bottom: 1.2rem;
}

.nova-gallery-head p {
  color: var(--muted);
  margin: 0 auto;
  max-width: 70ch;
}

.nova-center { justify-content: center; }

.nova-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
}

.nova-shot {
  margin: 0;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: #e5edf5;
  font-weight: 620;
  font-size: .92rem;
  background:
    radial-gradient(120% 90% at 20% 20%, rgba(98,217,255,.17), transparent 65%),
    radial-gradient(120% 90% at 80% 80%, rgba(141,255,207,.12), transparent 70%),
    #131c27;
}

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

.nova-shot-feature {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
  font-size: 1rem;
}

@media (min-width: 1061px) {
  .nova-dialogue header h2 {
    white-space: nowrap;
  }
}

@media (max-width: 1060px) {
  .nova-intro-layout,
  .nova-pipeline,
  .nova-studio-layout,
  .nova-form-grid,
  .nova-asset-grid,
  .nova-footer-layout,
  .nova-gallery-grid {
    grid-template-columns: 1fr;
  }

  .nova-intro { min-height: 88svh; align-items: end; }

  .nova-intro-video {
    top: .55rem;
    bottom: .55rem;
    left: .55rem;
    width: calc(100% - 1.1rem);
    transform: none;
    border-radius: 16px;
  }

  .nova-intro-main {
    background: linear-gradient(180deg, rgba(18,25,34,.4), rgba(23,32,44,.4));
  }

  .nova-intro-aside {
    background: linear-gradient(180deg, rgba(18,25,34,.4), rgba(23,32,44,.4));
  }


  .nova-shot-feature { grid-column: auto; aspect-ratio: 4 / 3; }
}
