
:root {
  --film-dark: #241813;
  --film-brown: #5d3a27;
  --film-cream: #f3e2bd;
  --film-paper: #fff4d4;
  --film-red: #8f2b2d;
  --film-gold: #d5a65d;
  --shadow: 0 22px 60px rgba(33, 21, 14, .28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--film-paper);
  background:
    radial-gradient(circle at 20% 10%, rgba(213, 166, 93, .18), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(143, 43, 45, .22), transparent 24rem),
    linear-gradient(135deg, #1d1512 0%, #3a241b 48%, #170f0d 100%);
  font-family: "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  line-height: 1.72;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .22;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(0deg, rgba(0,0,0,.08) 0 2px, transparent 2px 5px);
  mix-blend-mode: overlay;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(31, 20, 15, .82);
  border-bottom: 1px solid rgba(243, 226, 189, .2);
  backdrop-filter: blur(16px);
}
.brand-logo { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: .04em; }
.logo-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, #f7deb0 0%, #c28b4e 48%, #5b261d 100%);
  color: #261611;
  box-shadow: 0 0 0 4px rgba(244, 224, 180, .16), 0 0 30px rgba(213, 166, 93, .45);
  font-size: 1.35rem;
}
.logo-copy { color: var(--film-cream); font-size: .94rem; }
.main-nav { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.main-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 244, 212, .82);
  font-size: .95rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.main-nav a:hover, .main-nav .is-active { background: rgba(213, 166, 93, .2); color: #fff8dc; transform: translateY(-1px); }
.search-strip { padding: 18px clamp(18px, 4vw, 56px); background: rgba(255, 238, 196, .06); border-bottom: 1px solid rgba(243, 226, 189, .13); }
.fake-search { display: grid; grid-template-columns: 1fr auto; gap: 10px; max-width: 1000px; margin: 0 auto; }
.fake-search input, .fake-search button {
  border: 1px solid rgba(243, 226, 189, .25);
  border-radius: 999px;
  padding: 14px 18px;
  background: rgba(25, 16, 12, .72);
  color: var(--film-paper);
  font-size: 1rem;
  outline: none;
}
.fake-search button { cursor: pointer; background: linear-gradient(135deg, var(--film-red), var(--film-brown)); font-weight: 700; }
.search-hint { grid-column: 1 / -1; margin: 0; color: #f4d59a; min-height: 1.4em; }
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: clamp(64px, 10vw, 130px) clamp(18px, 5vw, 72px);
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center/cover no-repeat;
  filter: saturate(.9) contrast(1.04);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 10, 8, .88), rgba(24, 13, 10, .38), rgba(18, 10, 8, .72)),
    radial-gradient(circle at 60% 40%, rgba(255, 217, 150, .18), transparent 28rem);
}
.hero-content { max-width: 780px; }
.kicker { color: #f0c46e; text-transform: uppercase; letter-spacing: .22em; font-family: "Courier New", monospace; font-weight: 700; }
h1, h2, h3, h4 { line-height: 1.18; color: #fff2c8; margin: 0 0 16px; }
h1 { font-size: clamp(2.8rem, 8vw, 6.8rem); letter-spacing: .05em; text-shadow: 0 12px 45px rgba(0,0,0,.42); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.38rem; }
p { margin: 0 0 16px; }
.lead { font-size: clamp(1.08rem, 2vw, 1.35rem); color: rgba(255, 244, 212, .9); max-width: 720px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  color: #261611;
  background: linear-gradient(135deg, #ffe4a4, #c28b4e);
  box-shadow: 0 12px 30px rgba(213, 166, 93, .24);
  font-weight: 800;
}
.btn.secondary { color: var(--film-paper); background: rgba(255, 255, 255, .08); border: 1px solid rgba(243, 226, 189, .26); }
main { background: linear-gradient(180deg, rgba(30, 18, 13, .2), rgba(30, 18, 13, .82)); }
.section { padding: clamp(56px, 9vw, 104px) clamp(18px, 5vw, 72px); }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-title { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section-title p { max-width: 620px; color: rgba(255, 244, 212, .74); }
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .story-card, .tool-card, .review-card, .faq-item, .contact-card {
  position: relative;
  border: 1px solid rgba(243, 226, 189, .2);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,244,212,.1), rgba(36,24,19,.78));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card, .story-card, .tool-card, .review-card, .faq-item, .contact-card { padding: 24px; }
.video-card { overflow: hidden; border-radius: 30px; border: 1px solid rgba(243, 226, 189, .22); background: rgba(27,17,13,.86); box-shadow: var(--shadow); }
.video-frame { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #120b09; }
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; filter: sepia(.18) saturate(.96) contrast(1.06); transition: transform .4s ease, filter .4s ease; }
.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) scale(.88);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255, 244, 212, .55);
  background: rgba(36, 24, 19, .68);
  color: #ffe4a4;
  font-size: 28px;
  opacity: 0;
  cursor: pointer;
  transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
}
.film-grain {
  position: absolute;
  inset: 0;
  opacity: .0;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 231, 168, .18), transparent 18rem),
    repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,.12) 0 1px, transparent 1px 4px),
    linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  mix-blend-mode: screen;
  pointer-events: none;
}
.video-card:hover video, .video-card.is-playing video { transform: scale(1.045); filter: sepia(.35) saturate(1.08) contrast(1.16); }
.video-card:hover .play-button, .video-card.is-playing .play-button { opacity: 1; transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 36px rgba(255, 218, 152, .42); }
.video-card:hover .film-grain, .video-card.is-playing .film-grain { opacity: .8; animation: grainShake .45s steps(2) infinite; }
@keyframes grainShake { 0% { transform: translate(0,0); } 35% { transform: translate(-2px,1px); } 70% { transform: translate(2px,-1px); } 100% { transform: translate(0,0); } }
.video-body { padding: 22px; }
.video-body p { color: rgba(255, 244, 212, .75); }
.video-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; list-style: none; padding: 0; margin: 18px 0; color: #f2c46f; font-size: .9rem; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tag-row span { padding: 5px 10px; border-radius: 999px; background: rgba(213, 166, 93, .16); color: #ffe7ad; font-size: .84rem; border: 1px solid rgba(213, 166, 93, .24); }
.story-card p, .tool-card p, .review-card p, .faq-item p, .contact-card p { color: rgba(255, 244, 212, .76); }
.gallery { columns: 4 220px; column-gap: 18px; }
.gallery figure { break-inside: avoid; margin: 0 0 18px; border-radius: 24px; overflow: hidden; border: 1px solid rgba(243, 226, 189, .22); background: rgba(255,255,255,.06); }
.gallery figcaption { padding: 14px 16px; color: #ffe6ad; font-size: .94rem; }
.pill-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 18px 0 0; }
.pill-list li { padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(243, 226, 189, .22); background: rgba(255,255,255,.06); }
.creator img { border-radius: 22px; aspect-ratio: 1; object-fit: cover; margin-bottom: 18px; }
.partner-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.partner-wall span { min-height: 86px; display: grid; place-items: center; border-radius: 22px; border: 1px solid rgba(243,226,189,.2); background: rgba(255,244,212,.08); color: #ffe3a3; font-weight: 800; text-align: center; }
.breadcrumb { max-width: 1180px; margin: 34px auto 0; padding: 0 clamp(18px, 5vw, 72px); color: rgba(255, 244, 212, .78); display: flex; gap: 10px; flex-wrap: wrap; }
.breadcrumb a { color: #f3c46c; }
.page-hero { padding: clamp(46px, 7vw, 86px) clamp(18px, 5vw, 72px) 20px; }
.page-hero .section-inner { border-radius: 34px; padding: clamp(30px, 6vw, 70px); border: 1px solid rgba(243, 226, 189, .22); background: linear-gradient(135deg, rgba(255,244,212,.12), rgba(24,14,11,.72)); box-shadow: var(--shadow); }
.timeline { display: grid; gap: 18px; counter-reset: step; }
.timeline article { padding-left: 58px; position: relative; }
.timeline article::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: #d5a65d; color: #281711; font-weight: 900; }
.site-footer { padding: 42px clamp(18px, 5vw, 72px); background: #17100d; border-top: 1px solid rgba(243,226,189,.16); }
.footer-brand { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto auto; gap: 28px; align-items: center; }
.footer-brand figure { margin: 0; color: #f3d19c; text-align: center; }
.footer-brand img { width: 120px; height: 120px; border-radius: 16px; border: 1px solid rgba(243,226,189,.2); }
.footer-logo { margin-bottom: 14px; }
@media (max-width: 900px) {
  .site-header { position: relative; align-items: flex-start; flex-direction: column; }
  .main-nav { justify-content: flex-start; }
  .fake-search { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section-title { display: block; }
  .video-meta { grid-template-columns: repeat(2, 1fr); }
  .partner-wall { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
