/* ============================================================
   「影视双管齐下 · Cinematic Rice Paper」
   Awwwards Design System — Warm Neo-Brutalist Cinema Aesthetic
   ============================================================ */

:root {
  --paper: #fdf8f2;
  --paper-light: #fffdf8;
  --paper-deep: #f3ebdf;
  --ink: #1a2a3a;
  --ink-soft: #52616f;
  --cinnabar: #e85a3d;
  --cinnabar-dark: #c8432c;
  --jade: #2aa89b;
  --jade-dark: #1f8f84;
  --gold: #d9a441;
  --shadow-warm: 0 12px 40px rgba(120, 80, 30, 0.12);
  --shadow-hard: 6px 6px 0 rgba(26, 42, 58, 0.14);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
  background-color: var(--paper);
  background-image:
    radial-gradient(rgba(232, 90, 61, 0.025) 1px, transparent 1px),
    radial-gradient(rgba(42, 168, 155, 0.02) 1px, transparent 1px);
  background-size: 32px 32px, 48px 48px;
  color: var(--ink);
  line-height: 1.6;
}

::selection {
  background: var(--cinnabar);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--paper-deep);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--cinnabar), var(--jade));
  border-radius: 5px;
}

/* ---------- 核心布局 ---------- */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
  border-bottom: 1px solid rgba(26, 42, 58, 0.05);
}

.section:nth-child(even) {
  background: var(--paper-deep);
}

/* ---------- 导航 ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 248, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--ink);
  box-shadow: 0 2px 24px rgba(232, 90, 61, 0.06);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--cinnabar) 0 16px,
    transparent 16px 32px,
    var(--jade) 32px 48px,
    transparent 48px 64px
  );
  opacity: 0.35;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50% 50% 50% 4px;
  background: var(--cinnabar);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 3px 3px 0 var(--ink);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.04em;
  transition: color 0.25s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--cinnabar);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.main-nav a:hover {
  color: var(--cinnabar);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  border-radius: 999px;
  color: #fff !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, var(--cinnabar), #e8836a);
  box-shadow: 0 4px 16px rgba(232, 90, 61, 0.28);
  letter-spacing: 0.06em;
  transition: transform 0.25s, box-shadow 0.25s;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 90, 61, 0.35);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 2px solid var(--ink);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.menu-toggle::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--ink);
  box-shadow: 0 7px 0 var(--ink), 0 -7px 0 var(--ink);
}

.menu-toggle:hover {
  background: var(--paper-deep);
}

/* ---------- 首页 Hero ---------- */

@keyframes rise-fade {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  background:
    radial-gradient(ellipse at 85% 30%, rgba(42, 168, 155, 0.09), transparent 45%),
    radial-gradient(ellipse at 10% 90%, rgba(232, 90, 61, 0.07), transparent 40%),
    var(--paper);
  padding-top: 68px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 68px;
  left: 0;
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--cinnabar) 0 24px,
    transparent 24px 48px,
    var(--jade) 48px 72px,
    transparent 72px 96px
  );
  z-index: 1;
  opacity: 0.5;
}

.hero::after {
  content: '影';
  position: absolute;
  right: -10px;
  bottom: -40px;
  font-size: 24rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(232, 90, 61, 0.045);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  flex: 1 1 55%;
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 16px 6px 10px;
  border-radius: 999px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(232, 90, 61, 0.08), rgba(42, 168, 155, 0.08));
  border: 1.5px dashed var(--cinnabar);
  color: var(--cinnabar);
  letter-spacing: 0.1em;
  animation: rise-fade 0.6s ease-out both;
}

.hero-eyebrow::before {
  content: '▶';
  font-size: 0.55rem;
  background: var(--cinnabar);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: 0.01em;
  animation: rise-fade 0.7s 0.1s ease-out both;
}

.hero h1 .highlight {
  font-style: normal;
  position: relative;
  display: inline-block;
  color: var(--cinnabar);
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 4px;
  height: 10px;
  background: rgba(217, 164, 65, 0.35);
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1deg);
}

.hero p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.8;
  animation: rise-fade 0.7s 0.2s ease-out both;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  animation: rise-fade 0.7s 0.3s ease-out both;
}

.hero-image {
  flex: 1 1 45%;
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 10px 10px 0 rgba(42, 168, 155, 0.18);
  transform: rotate(1.5deg);
  animation: rise-fade 0.8s 0.15s ease-out both;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 40px;
  width: 80px;
  height: 26px;
  background: rgba(217, 164, 65, 0.45);
  transform: rotate(-8deg);
  z-index: 2;
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(120, 80, 30, 0.15);
}

.hero-image::after {
  content: '正在热播 · 十万好评';
  display: block;
  padding: 10px 16px;
  background: var(--paper-light);
  border-top: 3px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  text-align: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- 按钮 ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary {
  background: var(--cinnabar);
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(232, 90, 61, 0.3);
}

.btn-primary:hover {
  background: var(--cinnabar-dark);
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 10px 30px rgba(232, 90, 61, 0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--jade);
  color: var(--jade-dark) !important;
}

.btn-outline:hover {
  background: var(--jade);
  color: #fff !important;
  transform: translateY(-3px) rotate(1deg);
  box-shadow: 0 8px 24px rgba(42, 168, 155, 0.3);
}

/* ---------- 标签 / 标题 ---------- */

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 12px;
  color: var(--cinnabar);
  background: rgba(232, 90, 61, 0.08);
  border: 1px solid rgba(232, 90, 61, 0.3);
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--cinnabar) 0 8px, transparent 8px 12px);
  margin-top: 8px;
  border-radius: 2px;
}

.section-desc {
  max-width: 600px;
  opacity: 0.65;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ---------- 卡片网格 ---------- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  border-radius: 20px;
  padding: 28px;
  background: var(--paper-light);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cinnabar), var(--gold), var(--jade));
  opacity: 0;
  transition: opacity 0.3s;
}

.category-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 10px 10px 0 rgba(26, 42, 58, 0.18);
}

.category-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
  background: var(--paper-deep);
  border: 2px solid var(--ink);
}

.category-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.category-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--cinnabar);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.card-link::after {
  content: '→';
  transition: transform 0.3s;
}

.card-link:hover::after {
  transform: translateX(4px);
}

/* ---------- 特性块 ---------- */

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-image {
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--gold);
  position: relative;
  background: var(--paper-light);
}

.feature-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 40px;
  width: 80px;
  height: 26px;
  background: rgba(217, 164, 65, 0.4);
  transform: rotate(-8deg);
  z-index: 2;
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(120, 80, 30, 0.15);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text {
  padding: 20px 0;
}

.feature-text .section-title {
  margin-bottom: 16px;
}

.feature-text .section-title::after {
  background: repeating-linear-gradient(90deg, var(--jade) 0 8px, transparent 8px 12px);
}

.feature-text > p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px dashed rgba(26, 42, 58, 0.1);
  font-weight: 500;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '✓';
  font-weight: 900;
  color: var(--jade-dark);
  background: rgba(42, 168, 155, 0.12);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}

/* ---------- 数据条 ---------- */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 28px 16px;
  border-radius: 20px;
  border: 2px solid var(--ink);
  background: linear-gradient(180deg, var(--paper-light), #fff);
  box-shadow: 4px 4px 0 rgba(26, 42, 58, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--cinnabar) 0 6px, transparent 6px 8px);
  border-radius: 2px;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--cinnabar), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ---------- 内容墙 ---------- */

.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.content-wall-item {
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper-light);
  border: 2px solid var(--ink);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: 8px 8px 0 rgba(42, 168, 155, 0.25);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid var(--ink);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.content-wall-item:hover img {
  transform: scale(1.04);
}

.content-wall-item::after {
  content: '▶ 立即观看';
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(232, 90, 61, 0.92);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  border: 2px solid var(--ink);
}

.content-wall-item:hover::after {
  opacity: 1;
  transform: scale(1);
}

.content-wall-body {
  padding: 20px;
}

.content-wall-body h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.content-wall-body p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.content-wall-body .rating {
  display: inline-block;
  background: rgba(232, 90, 61, 0.1);
  color: var(--cinnabar);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 999px;
  margin-top: 10px;
  border: 1px solid rgba(232, 90, 61, 0.2);
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid var(--ink);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--paper-light);
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item.open {
  border-color: var(--cinnabar);
  box-shadow: 4px 4px 0 rgba(232, 90, 61, 0.15);
}

.faq-item .faq-question {
  padding: 18px 20px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cinnabar);
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 20px 18px;
  display: none;
  opacity: 0.75;
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ---------- CTA 横幅 ---------- */

.cta-banner {
  padding: 56px 24px;
  text-align: center;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--cinnabar), var(--cinnabar-dark) 70%, #d4543a);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '▶';
  position: absolute;
  font-size: 14rem;
  right: -20px;
  bottom: -40px;
  opacity: 0.08;
  color: #fff;
  line-height: 1;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 20px, transparent 20px 40px);
  opacity: 0.4;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner h2::after {
  display: none;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--cinnabar) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  background: #f5f5f5;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ---------- 页脚 ---------- */

.site-footer {
  padding: 56px 0 28px;
  background: var(--paper-deep);
  border-top: 3px solid var(--ink);
  margin-top: 40px;
  background-image: radial-gradient(rgba(232, 90, 61, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
}

.site-footer .container {
  position: relative;
}

.site-footer .container::before {
  content: '';
  position: absolute;
  top: -56px;
  right: 24px;
  width: 48px;
  height: 48px;
  background-image: radial-gradient(circle, var(--cinnabar) 6px, transparent 7px);
  background-size: 16px 16px;
  opacity: 0.3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--cinnabar) 0 6px, transparent 6px 8px);
  border-radius: 2px;
}

.footer-col a {
  display: block;
  padding: 4px 0;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s, transform 0.2s;
}

.footer-col a:hover {
  color: var(--cinnabar);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 2px dashed rgba(26, 42, 58, 0.15);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- 工具类 ---------- */

.text-accent {
  color: var(--cinnabar);
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.7;
  line-height: 1.7;
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* ---------- 响应式 ---------- */

@media (max-width: 1024px) {
  .hero {
    gap: 32px;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--paper);
    padding: 24px;
    gap: 4px;
    border-bottom: 3px solid var(--ink);
    box-shadow: 0 20px 40px rgba(120, 80, 30, 0.15);
  }

  .main-nav.open a {
    padding: 12px 4px;
    color: var(--ink);
    border-bottom: 1px dashed rgba(26, 42, 58, 0.12);
    font-size: 1rem;
  }

  .main-nav.open a::after {
    display: none;
  }

  .main-nav.open .nav-cta {
    text-align: center;
    margin-top: 12px;
    color: #fff !important;
    border-bottom: none;
  }

  .hero {
    flex-direction: column-reverse;
    padding-top: 100px;
    padding-bottom: 40px;
    text-align: left;
  }

  .hero::after {
    font-size: 14rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image {
    width: 100%;
    max-width: 480px;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .cta-banner {
    padding: 40px 20px;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }

  .stat-item {
    padding: 20px 12px;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}