/* ============================================================
   樱花视频 · 新中式国风美学官网 · 主样式
   Color Palette: 深墨黑 #0d0d0d / 朱砂红 #c0392b / 鎏金 #c9a84c / 米白 #f5f0e8 / 青玉绿 #4a8c7a
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: "Noto Serif SC", "Source Han Serif CN", "STSong", Georgia, serif;
  background: #0d0d0d;
  color: #f5f0e8;
  line-height: 1.8;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ---- CSS Variables ---- */
:root {
  --ink: #0d0d0d;
  --red: #c0392b;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --cream: #f5f0e8;
  --jade: #4a8c7a;
  --gray: #888;
  --border: rgba(201,168,76,0.25);
  --card-bg: rgba(255,255,255,0.04);
  --transition: 0.4s cubic-bezier(0.25,0.8,0.25,1);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0d0d0d; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 0.75rem;
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff; font-weight: 700;
  box-shadow: 0 0 18px rgba(201,168,76,0.4);
}
.logo-text { font-size: 1.35rem; font-weight: 700; letter-spacing: 0.1em; }
.logo-text span { color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  padding: 0.5rem 1rem; font-size: 0.9rem; letter-spacing: 0.08em;
  color: rgba(245,240,232,0.8);
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 1px; background: var(--gold);
  transition: var(--transition);
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { left: 10%; right: 10%; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--cream);
  margin: 5px 0; transition: var(--transition);
}

/* ---- Search Bar ---- */
.search-bar-wrap {
  background: rgba(13,13,13,0.85);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 2rem;
  position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
}
.search-bar-inner {
  max-width: 680px; margin: 0 auto;
  display: flex; align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  transition: var(--transition);
}
.search-bar-inner:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.search-bar-inner input {
  flex: 1; background: none; border: none; outline: none;
  padding: 0.55rem 1.25rem;
  color: var(--cream); font-size: 0.9rem; font-family: inherit;
}
.search-bar-inner input::placeholder { color: rgba(245,240,232,0.4); }
.search-btn {
  background: none; border: none; cursor: pointer;
  padding: 0.55rem 1.25rem; color: var(--gold); font-size: 1rem;
  transition: var(--transition);
}
.search-btn:hover { color: var(--gold-light); }

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-top: 110px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.55);
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(13,13,13,0.3) 0%,
    rgba(13,13,13,0.1) 40%,
    rgba(13,13,13,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 2rem;
  max-width: 860px;
}
.hero-tag {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold); font-size: 0.8rem; letter-spacing: 0.25em;
  padding: 0.3rem 1.2rem; margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease both;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700; letter-spacing: 0.15em;
  line-height: 1.3; margin-bottom: 1rem;
  animation: fadeInDown 1s 0.2s ease both;
}
.hero-title .gold { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(245,240,232,0.75); letter-spacing: 0.12em;
  margin-bottom: 2.5rem;
  animation: fadeInDown 1s 0.4s ease both;
}
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 1s 0.6s ease both;
}
.btn-primary {
  padding: 0.85rem 2.5rem;
  background: linear-gradient(135deg, var(--red), #8b1a1a);
  color: #fff; font-size: 1rem; letter-spacing: 0.12em;
  border: none; border-radius: 4px; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(192,57,43,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(192,57,43,0.5); }
.btn-outline {
  padding: 0.85rem 2.5rem;
  background: transparent;
  color: var(--gold); font-size: 1rem; letter-spacing: 0.12em;
  border: 1px solid var(--gold); border-radius: 4px; cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { background: rgba(201,168,76,0.12); transform: translateY(-3px); }

/* Ink particles */
.ink-particles {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  overflow: hidden;
}
.ink-particle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.6), transparent);
  animation: floatUp linear infinite;
  opacity: 0;
}
@keyframes floatUp {
  0%   { transform: translateY(0) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-120vh) scale(1.5); opacity: 0; }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block; font-size: 0.78rem; letter-spacing: 0.3em;
  color: var(--gold); border-bottom: 1px solid var(--border);
  padding-bottom: 0.4rem; margin-bottom: 1rem;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; letter-spacing: 0.12em; margin-bottom: 0.75rem;
}
.section-title .gold { color: var(--gold); }
.section-desc {
  color: rgba(245,240,232,0.6); font-size: 0.95rem;
  max-width: 560px; margin: 0 auto; letter-spacing: 0.05em;
}
.gold-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto 0;
}

/* ============================================================
   VIDEO CARDS
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.video-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,168,76,0.2);
}
.video-thumb {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9;
}
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.08); }

/* Ink wash overlay on hover */
.video-thumb::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center,
    rgba(201,168,76,0.0) 0%,
    rgba(13,13,13,0.0) 100%);
  transition: background 0.5s ease;
}
.video-card:hover .video-thumb::before {
  background: radial-gradient(ellipse at center,
    rgba(201,168,76,0.18) 0%,
    rgba(13,13,13,0.55) 100%);
}

/* Play button */
.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  z-index: 2;
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 0 0 0 rgba(201,168,76,0.5);
}
.play-btn::after {
  content: '';
  border-left: 18px solid #0d0d0d;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.video-card:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 0 0 12px rgba(201,168,76,0.2);
}

/* Duration badge */
.duration {
  position: absolute; bottom: 8px; right: 10px; z-index: 2;
  background: rgba(13,13,13,0.8);
  color: var(--cream); font-size: 0.75rem;
  padding: 0.15rem 0.5rem; border-radius: 3px;
}

.video-info { padding: 1rem 1.2rem 1.2rem; }
.video-title {
  font-size: 0.95rem; font-weight: 600;
  margin-bottom: 0.5rem; letter-spacing: 0.05em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-meta {
  display: flex; gap: 1rem; font-size: 0.78rem;
  color: rgba(245,240,232,0.5);
}
.video-meta span { display: flex; align-items: center; gap: 0.3rem; }
.video-tag {
  display: inline-block; font-size: 0.7rem;
  background: rgba(201,168,76,0.12); color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.1rem 0.6rem; border-radius: 3px;
  margin-top: 0.5rem;
}

/* ============================================================
   FEATURED CARDS (精选)
   ============================================================ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.featured-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
  transition: var(--transition);
}
.featured-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 10px 35px rgba(201,168,76,0.15);
}
.featured-img { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.featured-card:hover .featured-img img { transform: scale(1.06); }
.featured-cat {
  position: absolute; top: 12px; left: 12px;
  background: rgba(192,57,43,0.85);
  color: #fff; font-size: 0.72rem; letter-spacing: 0.1em;
  padding: 0.2rem 0.7rem; border-radius: 3px;
}
.featured-body { padding: 1.2rem; }
.featured-title {
  font-size: 1rem; font-weight: 600; margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
.featured-excerpt {
  font-size: 0.82rem; color: rgba(245,240,232,0.55);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: 0.8rem;
}
.featured-stats {
  display: flex; gap: 1rem; font-size: 0.75rem;
  color: rgba(245,240,232,0.45);
}

/* ============================================================
   STORY SECTION
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.story-img { border-radius: 8px; overflow: hidden; position: relative; }
.story-img img { width: 100%; border-radius: 8px; }
.story-img::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid var(--border); border-radius: 8px;
  pointer-events: none;
}
.story-content { padding: 1rem 0; }
.story-quote {
  font-size: 1.1rem; color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem; margin-bottom: 1.5rem;
  font-style: italic; letter-spacing: 0.08em;
}
.story-text {
  font-size: 0.92rem; color: rgba(245,240,232,0.7);
  line-height: 2; margin-bottom: 1.5rem;
}
.story-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gold); font-size: 0.88rem; letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: 2px; transition: var(--transition);
}
.story-link:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ============================================================
   IMAGE WALL (影像)
   ============================================================ */
.img-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.img-wall-item {
  position: relative; overflow: hidden; border-radius: 6px;
  aspect-ratio: 16/9; cursor: pointer;
}
.img-wall-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.img-wall-item:hover img { transform: scale(1.1); }
.img-wall-item::after {
  content: attr(data-title);
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,13,13,0.85));
  color: var(--cream); font-size: 0.82rem; letter-spacing: 0.08em;
  padding: 1.5rem 0.8rem 0.8rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.img-wall-item:hover::after { transform: translateY(0); }

/* ============================================================
   AI MODULE
   ============================================================ */
.ai-section { background: rgba(201,168,76,0.04); }
.ai-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.ai-features { display: flex; flex-direction: column; gap: 1.5rem; }
.ai-feature {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: 8px;
  transition: var(--transition);
}
.ai-feature:hover { border-color: var(--gold); }
.ai-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(192,57,43,0.3), rgba(201,168,76,0.3));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.ai-feature-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--gold); }
.ai-feature-desc { font-size: 0.82rem; color: rgba(245,240,232,0.6); }

/* ============================================================
   CREATORS
   ============================================================ */
.creators-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem;
}
.creator-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 8px; transition: var(--transition);
}
.creator-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.creator-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  margin: 0 auto 1rem;
  border: 2px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.creator-card:hover .creator-avatar { border-color: var(--gold); }
.creator-avatar img { width: 100%; height: 100%; object-fit: cover; }
.creator-name { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.creator-role { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.6rem; }
.creator-desc { font-size: 0.8rem; color: rgba(245,240,232,0.55); }
.creator-stats {
  display: flex; justify-content: center; gap: 1.5rem;
  margin-top: 1rem; font-size: 0.75rem; color: rgba(245,240,232,0.5);
}
.creator-stats strong { display: block; color: var(--gold); font-size: 0.9rem; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem;
}
.review-card {
  padding: 1.8rem; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: 8px;
  transition: var(--transition); position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute; top: 1rem; right: 1.5rem;
  font-size: 4rem; color: rgba(201,168,76,0.15);
  font-family: Georgia, serif; line-height: 1;
}
.review-card:hover { border-color: rgba(201,168,76,0.4); }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.8rem; }
.review-text {
  font-size: 0.88rem; color: rgba(245,240,232,0.75);
  line-height: 1.9; margin-bottom: 1.2rem;
}
.review-author { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.review-name { font-size: 0.88rem; font-weight: 600; }
.review-location { font-size: 0.75rem; color: rgba(245,240,232,0.45); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 0; text-align: left;
  color: var(--cream); font-size: 0.95rem; font-family: inherit;
  letter-spacing: 0.05em; transition: color 0.3s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 0.88rem; color: rgba(245,240,232,0.6);
  line-height: 1.9; letter-spacing: 0.04em;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.2rem; }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-grid {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}
.partner-item {
  padding: 1rem 2rem;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 6px; font-size: 0.88rem; letter-spacing: 0.1em;
  color: rgba(245,240,232,0.6);
  transition: var(--transition);
}
.partner-item:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,168,76,0.1); border: 1px solid var(--border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-label { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.contact-value { font-size: 0.9rem; color: rgba(245,240,232,0.8); }
.qr-wrap {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.qr-item { text-align: center; }
.qr-box {
  width: 110px; height: 110px;
  background: #fff; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.5rem;
  font-size: 0.7rem; color: #333;
}
.qr-label { font-size: 0.75rem; color: rgba(245,240,232,0.5); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 1.5rem;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2.5rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.82rem; color: rgba(245,240,232,0.5);
  line-height: 1.9; max-width: 280px;
}
.footer-col h4 {
  font-size: 0.88rem; color: var(--gold); letter-spacing: 0.15em;
  margin-bottom: 1rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.82rem; color: rgba(245,240,232,0.5);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem; color: rgba(245,240,232,0.35);
}
.footer-bottom a { color: rgba(245,240,232,0.4); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; transition: var(--transition);
}
.social-link:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); color: var(--gold); }

/* ============================================================
   INNER PAGE STYLES
   ============================================================ */
.inner-hero {
  position: relative; height: 380px;
  display: flex; align-items: flex-end;
  overflow: hidden; margin-top: 110px;
}
.inner-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.45);
}
.inner-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, transparent 60%);
}
.inner-hero-content {
  position: relative; z-index: 2;
  padding: 2rem; max-width: 1280px; margin: 0 auto; width: 100%;
}
.breadcrumb {
  font-size: 0.78rem; color: rgba(245,240,232,0.5);
  margin-bottom: 0.75rem; letter-spacing: 0.08em;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 0.5rem; }
.inner-hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: 0.15em;
}
.inner-hero-title .gold { color: var(--gold); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .story-grid, .ai-grid, .contact-grid { grid-template-columns: 1fr; }
  .img-wall { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: rgba(13,13,13,0.98); padding: 1rem; border-bottom: 1px solid var(--border); z-index: 998; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.75rem 1rem; width: 100%; }
  .nav-toggle { display: block; }
  .hero { margin-top: 130px; }
  .inner-hero { margin-top: 130px; }
  .video-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .img-wall { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .creators-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 1.25rem; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .creators-grid { grid-template-columns: 1fr; }
}

/* ---- footer-top grid fix ---- */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
