/* ═══════════════════════════════════════════════════════
   NUCROOZE – stylesheet
   White "paper" card on iridescent gradient background
   Fonts: Montserrat (display) + Playfair Display (serif accent) + Inter (body)
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink:        #1a1a1a;
  --ink-soft:   #444;
  --ink-muted:  #888;
  --paper:      #ffffff;
  --paper-off:  #f8f7f5;
  --rule:       #e8e4df;
  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  16px;
  --shadow-card: 0 8px 48px rgba(0,0,0,.13), 0 2px 12px rgba(0,0,0,.07);
  --shadow-lift: 0 20px 80px rgba(0,0,0,.18), 0 4px 20px rgba(0,0,0,.10);
  --transition:  .22s cubic-bezier(.4,0,.2,1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* ── Page background ── */
body.page-bg {
  min-height: 100vh;
  padding: 48px 20px 80px;
  font-family: 'Inter', sans-serif;
  font-optical-sizing: auto;
  background-attachment: fixed;
}

.nc-cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  width: min(420px, calc(100vw - 24px));
  display: grid;
  gap: 16px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  backdrop-filter: blur(14px);
}

.nc-cookie-banner[hidden] {
  display: none;
}

.nc-cookie-banner__copy strong {
  display: block;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: none;
  text-transform: uppercase;
  color: var(--ink);
}

.nc-cookie-banner__copy p {
  font-size: 0.6rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.nc-cookie-banner__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.nc-cookie-btn {
  appearance: none;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.nc-cookie-btn:hover {
  transform: translateY(-1px);
  opacity: .94;
}

.nc-cookie-btn--ghost {
  background: transparent;
  color: var(--ink);
}

.nc-h1-seo { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

@media (max-width: 600px) {
  body.page-bg { padding: 20px 12px 60px; }

  .nc-cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .nc-cookie-banner__actions {
    flex-direction: column-reverse;
  }

  .nc-cookie-btn {
    width: 100%;
  }
}

/* ── Paper card ── */
.paper {
  background: var(--paper);
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  animation: cardIn .7s cubic-bezier(.22,1,.36,1) both;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(28px) scale(.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Sections inside card ── */
.nc-hero,
.nc-form-section,
.nc-genres,
.nc-about,
.nc-footer {
  padding: 56px 64px;
}

@media (max-width: 640px) {
  .nc-hero,
  .nc-form-section,
  .nc-genres,
  .nc-about,
  .nc-footer {
    padding: 40px 28px;
  }
}

.nc-divider {
  height: 1px;
  background: var(--rule);
  margin: 0 64px;
}

@media (max-width: 640px) {
  .nc-divider { margin: 0 28px; }
}

/* ── Hero ── */
.nc-hero {
  text-align: center;
  padding-bottom: 48px;
}

.nc-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .6s .15s both;
}

.nc-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: -.04em;
  line-height: .95;
  color: var(--ink);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp .7s .25s both;
}

.nc-logo span {
  font-weight: 300;
  letter-spacing: -.01em;
}

.nc-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  color: var(--ink-soft);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .7s .35s both;
}

.nc-lede {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
  text-align: left;
  opacity: 0;
  animation: fadeUp .7s .45s both;
}

.nc-lede strong { color: var(--ink); font-weight: 600; }
.nc-lede em    { font-style: italic; }

/* ── Genre tags ── */
.nc-genres {
  padding-top: 32px;
  padding-bottom: 32px;
}

.nc-genres-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
  text-align: center;
}

.nc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.nc-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1.5px solid var(--rule);
  border-radius: 999px;
  padding: 6px 16px;
  background: var(--paper-off);
  transition: border-color var(--transition), background var(--transition);
}

.nc-tag:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

/* ── Email form ── */
.nc-form-section {
  background: var(--paper-off);
  padding-top: 48px;
  padding-bottom: 48px;
}

.nc-form-header {
  text-align: center;
  margin-bottom: 32px;
}

.nc-form-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}

.nc-form-subtitle {
  font-size: .88rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

.nc-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.nc-input {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: .93rem;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.nc-input::placeholder { color: #bbb; }

.nc-input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(26,26,26,.08);
}

/* Honeypot */
.nc-hp { display: none !important; }

.nc-btn {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.nc-btn:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
}

.nc-btn:active { transform: translateY(0); box-shadow: none; }

.nc-privacy {
  text-align: center;
  font-size: .75rem;
  color: var(--ink-muted);
  margin-top: 4px;
}

/* Form messages */
.nc-msg {
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .85rem;
  line-height: 1.5;
  margin-top: 4px;
  display: block;
  background: #f4f4f4;
  border: 1px solid #ddd;
  color: var(--ink-soft);
}
.nc-msg.success { display: block; background: #f0faf4; border: 1px solid #b7dfc9; color: #2d6a4a; }
.nc-msg.error   { display: block; background: #fff5f5; border: 1px solid #f5c6c6; color: #a33030; }

.nc-section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
  text-align: center;
}

/* ── About ── */
.nc-about {
  padding-top: 48px;
  padding-bottom: 48px;
}

.nc-about h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.3;
}

.nc-about h2 em { font-style: italic; font-weight: 400; }

.nc-about p {
  font-size: .92rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.nc-about p:last-child { margin-bottom: 0; }
.nc-about strong { color: var(--ink); font-weight: 600; }

/* ── Footer ── */
.nc-footer {
  background: var(--paper-off);
  padding-top: 32px;
  padding-bottom: 32px;
  text-align: center;
}

.nc-footer p {
  font-size: .75rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

.nc-footer p:last-child { margin-bottom: 0; }
.nc-footer a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; }
.nc-footer strong { color: var(--ink-soft); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
