/* =========================================================================
   naturescenes.store — skin "cinema"

   Built for people who think in aspect ratios. Deep green-black, a letterboxed
   hero with real bars, wide 2.39-ish card crops, a slow Ken Burns drift on
   hover and monospaced technical data everywhere. The layout runs wider than
   the other sites on purpose: this is a catalogue you scan, not read.

   HAND-MAINTAINED. The forge never overwrites this file.
   ========================================================================= */

:root {
  --bg: #0a0f0c;
  --bg-deep: #050807;
  --surface: #121b15;
  --surface-2: #18241d;
  --text: #eaf1ec;
  --muted: #86988c;
  --indigo: #4a8f6a;
  --indigo-soft: #6fb98c;
  --indigo-deep: #2f6349;
  --glow: rgba(74, 143, 106, 0.30);
  --glow-soft: rgba(212, 180, 131, 0.14);
  --line: rgba(212, 226, 216, 0.11);
  --line-strong: rgba(212, 226, 216, 0.24);

  --sand: #d4b483;

  --r-sm: 2px;
  --r: 3px;
  --r-lg: 4px;

  --shadow-sm: 0 1px 8px rgba(0, 0, 0, 0.5);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
  --shadow-lift: 0 24px 60px rgba(0, 0, 0, 0.72);

  --grad-wash: none;
  --bar: clamp(28px, 6vh, 68px);
}

body.style-cinema {
  background: var(--bg);
  color: var(--text);
  line-height: 1.66;
}

/* A wider measure than the other sites: this is a scanning catalogue. */
body.style-cinema .shell { max-width: 1560px; }

/* ---------- type: condensed caps for headings, mono for data -------------- */

body.style-cinema h1,
body.style-cinema h2,
body.style-cinema h3 {
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.06;
  text-transform: uppercase;
}

body.style-cinema h1 {
  font-size: clamp(1.9rem, 5vw, 3.9rem);
  letter-spacing: 0.01em;
}

body.style-cinema .card-title,
body.style-cinema .journal-teaser h3,
body.style-cinema .journal-item h2 { text-transform: none; }

body.style-cinema .eyebrow {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--sand);
}

body.style-cinema .lede,
body.style-cinema .hero-lead {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.3vw, 1.14rem);
  max-width: 62ch;
}

/* ---------- header -------------------------------------------------------- */

body.style-cinema .site-header {
  background: rgba(5, 8, 7, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

body.style-cinema .brand-name {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 1.05rem;
}

body.style-cinema .brand-name em { font-style: normal; color: var(--sand); }
body.style-cinema .brand-dot { background: var(--sand); border-radius: 0; width: 6px; height: 6px; }

body.style-cinema .site-nav a {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s linear;
}

body.style-cinema .site-nav a:hover { color: var(--sand); }

/* ---------- hero: an actual letterbox ------------------------------------- */

body.style-cinema .hero {
  position: relative;
  background: linear-gradient(180deg, #060a08 0%, #101a14 55%, var(--bg) 100%);
  padding-block: calc(var(--bar) + clamp(3rem, 8vw, 6rem));
  overflow: hidden;
}

/* Real bars, top and bottom, the width of the viewport. */
body.style-cinema .hero::before,
body.style-cinema .hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: var(--bar);
  background: var(--bg-deep);
  border-block: 1px solid var(--line);
  pointer-events: none;
  animation: none;
  filter: none;
  inset: auto;
}

body.style-cinema .hero::before { top: 0; }
body.style-cinema .hero::after { bottom: 0; }

body.style-cinema .hero .shell { position: relative; z-index: 1; }

/* ---------- buttons ------------------------------------------------------- */

body.style-cinema .btn {
  border-radius: var(--r-sm);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.9rem 1.5rem;
  transition: background-color 0.22s linear, color 0.22s linear, border-color 0.22s linear;
}

body.style-cinema .btn-primary {
  background: var(--sand);
  color: #10170f;
  border: 1px solid var(--sand);
}

body.style-cinema .btn-primary:hover { background: #e3c79c; border-color: #e3c79c; }

body.style-cinema .btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}

body.style-cinema .btn-ghost:hover { border-color: var(--sand); color: var(--sand); }

/* ---------- cards: wide crops with a slow drift --------------------------- */

body.style-cinema .grid {
  gap: clamp(0.9rem, 1.8vw, 1.6rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 22rem), 1fr));
}

body.style-cinema .card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

body.style-cinema .card:hover { border-color: var(--sand); box-shadow: var(--shadow); }

/* Force the wide crop the whole site is about. */
body.style-cinema .card-media {
  position: relative;
  aspect-ratio: 2.39 / 1;
  overflow: hidden;
  background: var(--bg-deep);
}

body.style-cinema .card-media img,
body.style-cinema .card-media picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Ken Burns: a slow push that only runs while the pointer is on the card. */
body.style-cinema .card-media img {
  transform: scale(1.02);
  transition: transform 6s cubic-bezier(0.16, 0.6, 0.3, 1);
}

body.style-cinema .card:hover .card-media img { transform: scale(1.14) translate3d(-1%, -1%, 0); }

@media (prefers-reduced-motion: reduce) {
  body.style-cinema .card-media img,
  body.style-cinema .card:hover .card-media img { transform: none; transition: none; }
}

body.style-cinema .card-badge {
  background: rgba(5, 8, 7, 0.82);
  border: 1px solid var(--line);
  color: var(--sand);
  border-radius: var(--r-sm);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  padding: 2px 7px;
}

body.style-cinema .card-price {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 1;
  background: var(--sand);
  color: #10170f;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--r-sm);
}

body.style-cinema .card-body { padding: 0.8rem 1rem 1rem; }
body.style-cinema .card-title { font-size: 0.92rem; font-weight: 500; }
body.style-cinema .card-title a { color: var(--text); }
body.style-cinema .card-title a:hover { color: var(--sand); }

body.style-cinema .card-download {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: 0;
  padding: 0;
}

/* ---------- chips --------------------------------------------------------- */

body.style-cinema .tag-chips a,
body.style-cinema .tag-index a {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--muted);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  padding: 2px 8px;
}

body.style-cinema .tag-chips a:hover,
body.style-cinema .tag-index a:hover { border-color: var(--sand); color: var(--sand); }

/* ---------- detail: technical data, monospaced ---------------------------- */

body.style-cinema .detail-frame {
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 6px;
}

body.style-cinema .specs {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.82rem;
  border-top: 1px solid var(--line-strong);
}

body.style-cinema .specs > div {
  border-bottom: 1px solid var(--line);
  padding-block: 0.6rem;
}

body.style-cinema .specs dt {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

body.style-cinema .specs dd { color: var(--sand); }

body.style-cinema .purchase {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  padding: 1.5rem;
  margin-block: 1.4rem;
}

body.style-cinema .purchase-price { display: flex; align-items: baseline; gap: 0.55rem; margin: 0 0 1rem; }

body.style-cinema .purchase-amount {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: clamp(2.2rem, 4.4vw, 3rem);
  line-height: 1;
  color: var(--sand);
}

body.style-cinema .purchase-unit {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

body.style-cinema .purchase-note { font-size: 0.85rem; color: var(--muted); }

body.style-cinema .purchase-benefits { list-style: none; margin: 1rem 0 0; padding: 0; }

body.style-cinema .purchase-benefits li {
  border-top: 1px solid var(--line);
  padding: 0.48rem 0 0.48rem 1.2rem;
  font-size: 0.86rem;
  position: relative;
}

body.style-cinema .purchase-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 6px;
  height: 2px;
  background: var(--sand);
}

body.style-cinema .paypal-modal {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  padding: 0;
  max-width: 30rem;
}

body.style-cinema .paypal-modal::backdrop { background: rgba(0, 0, 0, 0.78); }
body.style-cinema .paypal-modal-card { padding: 1.9rem; }
body.style-cinema .paypal-modal-price {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 2rem;
  color: var(--sand);
}

/* ---------- collections and journal --------------------------------------- */

body.style-cinema .collection-strip,
body.style-cinema .journal-teasers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

body.style-cinema .collection-strip a {
  display: block;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.25s ease;
}

body.style-cinema .collection-strip a:hover { border-color: var(--sand); }

body.style-cinema .collection-name {
  display: block;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

body.style-cinema .collection-price {
  display: block;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 1.8rem;
  color: var(--sand);
  margin-top: 0.35rem;
}

body.style-cinema .collection-count { display: block; font-size: 0.76rem; color: var(--muted); }

body.style-cinema .journal-teaser article,
body.style-cinema .journal-item article {
  border-top: 1px solid var(--line-strong);
  padding-top: 0.9rem;
}

body.style-cinema .journal-date {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin: 0 0 0.4rem;
}

body.style-cinema .journal-list { list-style: none; padding: 0; margin: 0; max-width: 48rem; }
body.style-cinema .journal-item { padding-block: 1.4rem; }
body.style-cinema .journal-article { max-width: 40rem; margin-inline: auto; }
body.style-cinema .journal-article h2 { font-size: 1.2rem; margin-top: 2.2rem; }

body.style-cinema .journal-cta,
body.style-cinema .journal-siblings {
  max-width: 40rem;
  margin: 2.3rem auto 0;
  border-top: 1px solid var(--line-strong);
  padding-top: 1.1rem;
}

body.style-cinema .journal-siblings ul { list-style: none; padding: 0; margin: 0; }

/* ---------- sitemap ------------------------------------------------------- */

body.style-cinema .sitemap-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

body.style-cinema .sitemap-col-wide { grid-column: 1 / -1; }

body.style-cinema .sitemap-col h2 {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--sand);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.4rem;
}

body.style-cinema .sitemap-col ul { list-style: none; padding: 0; margin: 0.6rem 0 0; }
body.style-cinema .sitemap-col-wide ul { columns: 4 13rem; column-gap: 2rem; }
body.style-cinema .sitemap-col li { padding-block: 0.18rem; font-size: 0.88rem; break-inside: avoid; }

/* ---------- footer -------------------------------------------------------- */

body.style-cinema .site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}

body.style-cinema .footer-cols span {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
}

body.style-cinema .footer-cols a { color: var(--muted); font-size: 0.88rem; }
body.style-cinema .footer-cols a:hover { color: var(--text); }
body.style-cinema .footer-base { border-top: 1px solid var(--line); font-size: 0.78rem; color: var(--muted); }
