/* ============================================
   STRAISTĂ MEDIA — micro-cinema for social
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800;900&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --ink: #0b0b0c;
  --ink-panel: #131314;
  --ink-panel-2: #1a1a1b;
  --paper: #f4f3ef;
  --paper-dim: #9a9a96;
  --amber: #e01c2c;
  --amber-dim: #a5141f;
  --ember: #e01c2c;
  --line: rgba(244, 243, 239, 0.12);
  --line-strong: rgba(244, 243, 239, 0.24);

  --display: 'Big Shoulders Display', sans-serif;
  --body: 'Inter', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

/* film grain, applied once, globally, subtle */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* VHS scan lines — fixed, subtle, running the full viewport */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  opacity: 0.5;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,0.22) 0px,
    rgba(0,0,0,0.22) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: multiply;
}

/* corner vignette — old CRT feel */
.vignette {
  position: fixed;
  inset: 0;
  z-index: 997;
  pointer-events: none;
  box-shadow: inset 0 0 180px rgba(0,0,0,0.75);
}

@media (max-width: 780px) {
  .vignette { box-shadow: inset 0 0 90px rgba(0,0,0,0.7); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
}

/* ============ typography helpers ============ */

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 3px rgba(224, 28, 44, 0.25);
}

.tc {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--paper-dim);
  letter-spacing: 0.04em;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 0.96;
}

h2 {
  font-size: clamp(34px, 5.5vw, 58px);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}

@media (max-width: 640px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 3px;
  border: 1px solid var(--line-strong);
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
  font-weight: 600;
}
.btn-primary:hover { background: #f0b258; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--paper);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ nav ============ */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(23, 19, 15, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.nav-logo { height: 30px; }
.nav-logo img { height: 100%; width: auto; filter: brightness(0) invert(1); }

.nav-links {
  display: flex;
  gap: 34px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--paper-dim);
}
.nav-links a:hover { color: var(--amber); }

@media (max-width: 780px) {
  .nav-links { display: none; }
}

/* ============ hero — the frame ============ */

.hero {
  position: relative;
  padding: 56px 0 0;
}

.frame {
  position: relative;
  margin: 0 32px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(224, 28, 44, 0.12), transparent 60%),
    linear-gradient(180deg, #0f0f10 0%, #0a0a0b 100%);
  animation: tracking 9s ease-in-out infinite;
}

@keyframes tracking {
  0%, 92%, 100% { transform: translateX(0); filter: none; }
  93% { transform: translateX(-2px); filter: none; }
  94% { transform: translateX(2px); filter: hue-rotate(4deg); }
  95% { transform: translateX(-1px); filter: none; }
  96% { transform: translateX(0); filter: none; }
}

@media (prefers-reduced-motion: reduce) {
  .frame { animation: none; }
}

@media (max-width: 640px) {
  .frame { margin: 0 20px; }
}

.letterbox-top, .letterbox-bottom {
  height: 26px;
  background: #050505;
  display: flex;
  align-items: center;
  padding: 0 20px;
  justify-content: space-between;
}

.letterbox-top .tc, .letterbox-bottom .tc { color: #5a5a58; }

.sprockets {
  display: flex;
  gap: 10px;
}
.sprockets span {
  width: 6px; height: 6px;
  background: #2a2a2a;
  border-radius: 1px;
}

.hero-inner {
  padding: 90px 56px 96px;
  text-align: center;
}

@media (max-width: 780px) {
  .hero-inner { padding: 64px 24px 72px; }
}

.hero-inner .eyebrow { justify-content: center; }

.hero h1 {
  font-size: clamp(44px, 8.6vw, 104px);
  max-width: 960px;
  margin: 0 auto 26px;
}

.hero h1 em {
  font-style: normal;
  color: var(--amber);
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--paper-dim);
  font-size: 17px;
  line-height: 1.6;
}

.hero .btn-row { justify-content: center; }

/* rec indicator */
.rec {
  position: absolute;
  top: 14px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
  color: #b95445;
  letter-spacing: 0.08em;
  z-index: 2;
}
.rec-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #d1493a;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ============ proof strip ============ */

.proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 64px;
}

.proof-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 780px) {
  .proof-inner { grid-template-columns: repeat(2, 1fr); }
}

.proof-item {
  padding: 30px 24px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.proof-item:last-child { border-right: none; }
@media (max-width: 780px) {
  .proof-item:nth-child(2n) { border-right: none; }
  .proof-item { border-bottom: 1px solid var(--line); }
}

.proof-num {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.proof-label {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--paper-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============ generic section ============ */

section { padding: 108px 0; }
@media (max-width: 780px) { section { padding: 72px 0; } }

section, .proof {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
section.is-visible, .proof.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  section, .proof { opacity: 1; transform: none; }
}

.lede {
  max-width: 620px;
  color: var(--paper-dim);
  font-size: 16px;
}

/* ============ reel / portfolio ============ */

.reel-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .reel-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .reel-strip { grid-template-columns: 1fr; }
}

.reel-card {
  background: var(--ink-panel);
  aspect-ratio: 9 / 14;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.reel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(224, 28, 44, 0.14), transparent 55%),
    linear-gradient(200deg, #1c1c1d 0%, #0b0b0c 100%);
  z-index: 0;
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,10,8,0.86) 0%, rgba(12,10,8,0.1) 46%, transparent 70%);
  z-index: 1;
}

.reel-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border: 1px solid rgba(243,236,224,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  transition: all 0.25s ease;
}
.reel-play svg { width: 16px; height: 16px; fill: var(--paper); margin-left: 2px; }
.reel-card:hover .reel-play { border-color: var(--amber); background: rgba(224,28,44,0.14); transform: translate(-50%, -50%) scale(1.08); }

.reel-meta { position: relative; z-index: 3; }
.reel-client {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--amber);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.reel-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
}
.reel-tc {
  position: absolute;
  top: 16px; right: 18px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10.5px;
  color: rgba(243,236,224,0.55);
}

.reel-note {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--paper-dim);
}

/* carduri cu video real — <img> real ca thumbnail, straturi explicite */
.reel-card::before { z-index: 0; }
.reel-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block;
}
.reel-card::after { z-index: 2; }
.reel-card-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1000;
  background: #000;
}

/* ============ philosophy — split ============ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}

.compare {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div {
  padding: 18px 20px;
  font-size: 14.5px;
}
.compare-row > div:first-child {
  color: var(--paper-dim);
  border-right: 1px solid var(--line);
  text-decoration: line-through;
  text-decoration-color: rgba(138,58,46,0.6);
}
.compare-row > div:last-child { color: var(--paper); font-weight: 500; }
.compare-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink-panel-2);
}
.compare-head > div {
  padding: 14px 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.compare-head > div:first-child { color: #e0525f; border-right: 1px solid var(--line); }
.compare-head > div:last-child { color: var(--amber); }

/* ============ package ============ */

.package {
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: linear-gradient(160deg, var(--ink-panel) 0%, var(--ink-panel-2) 100%);
  padding: 52px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 640px) { .package { padding: 32px 24px; } }

.package::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(224,28,44,0.14), transparent 65%);
  pointer-events: none;
}

.package-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media (max-width: 640px) { .package-top { flex-direction: column; } }

.package-name {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.package-price {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 800;
}
.package-price span {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--paper-dim);
  font-weight: 400;
  text-transform: none;
  margin-left: 8px;
}

.package-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 640px) { .package-grid { grid-template-columns: 1fr; gap: 28px; } }

.package-list-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-dim);
  margin-bottom: 16px;
}

.package-list { list-style: none; }
.package-list li {
  display: flex;
  gap: 12px;
  padding: 9px 0;
  font-size: 14.5px;
  border-bottom: 1px solid rgba(243,236,224,0.06);
}
.package-list li:last-child { border-bottom: none; }

.check { color: var(--amber); flex-shrink: 0; }
.cross { color: #5c5c5a; flex-shrink: 0; }
.out { color: var(--paper-dim); }

/* ============ about ============ */

.about-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
}

.about-slate {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--paper-dim);
  line-height: 2;
  border-left: 1px solid var(--line-strong);
  padding-left: 20px;
}
.about-slate strong { color: var(--paper); font-weight: 500; }

.about-copy p {
  font-size: 17px;
  color: var(--paper-dim);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 640px;
}
.about-copy p strong { color: var(--paper); font-weight: 600; }

/* ============ contact / footer ============ */

.contact {
  text-align: center;
  padding: 110px 0 60px;
}
.contact h2 { margin-bottom: 20px; }
.contact .lede { margin: 0 auto 44px; text-align: center; }
.contact .btn-row { justify-content: center; }

footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--paper-dim);
}
.footer-inner a:hover { color: var(--amber); }
