*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x:hidden;
  background:#FBF8F3;
  color:#3D3833;
  line-height:1.7;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255,91,91,0.04) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(14,165,160,0.05) 0%, transparent 50%);
}

::selection { background:#FFB627; color:#3D3833; }

.container { max-width:1200px; margin:0 auto; padding:0 24px; }

.section { 
  padding:90px 0; 
  position:relative;
}

.section:nth-child(even) { 
  background:#F3EFE9; 
  box-shadow: inset 0 1px 0 #E8E2DA, inset 0 -1px 0 #E8E2DA;
}

/* === 导航 — 文件夹标签概念 === */
.site-header { 
  position:fixed; top:0; left:0; width:100%; z-index:1000; 
  background:rgba(251,248,243,0.94); 
  backdrop-filter:blur(12px); 
  border-bottom:1px solid #E4DDD4;
  box-shadow: 0 2px 24px rgba(61,56,51,0.04);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 4px;
  background: repeating-linear-gradient(90deg, #FF5D5D 0 40px, #0EA5A0 40px 80px, #FFB627 80px 120px);
  opacity: 0.6;
}

.header-inner { display:flex; align-items:center; justify-content:space-between; height:72px; 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:#3D3833; letter-spacing:-0.5px; }

.logo-icon { 
  width:38px; height:38px; border-radius:10px 10px 10px 3px; 
  display:flex; align-items:center; justify-content:center; 
  font-size:1.1rem;
  background:linear-gradient(135deg, #FF5D5D, #FF8E5D);
  color:#fff;
  box-shadow: 4px 4px 0 rgba(255,93,93,0.25);
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon { transform: rotate(3deg) scale(1.05); }

.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:#3D3833; 
  position:relative;
  padding: 4px 0;
  transition: color 0.2s;
  letter-spacing: 0.5px;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 3px;
  background: #FFB627;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:not(.nav-cta):hover { color:#FF5D5D; }
.main-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta { 
  padding:9px 24px; border-radius:50px; color:#fff!important; font-weight:700; 
  background:linear-gradient(135deg, #FF5D5D, #FF8E5D);
  box-shadow: 0 4px 12px rgba(255,93,93,0.35);
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  transform: translateY(-2px) rotate(-1deg);
  box-shadow: 0 6px 20px rgba(255,93,93,0.45);
}

.menu-toggle { display:none; }

/* === Hero — 记忆高亮便笺风格 === */
.hero { 
  min-height:80vh; 
  display:flex; 
  align-items:center; 
  background: linear-gradient(100deg, #FBF8F3 0%, #FBF8F3 55%, #FFF4E8 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 10%; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,182,39,0.12), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -60px; left: 10%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(14,165,160,0.08), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content { max-width:720px; position:relative; z-index:1; }

.hero-eyebrow { 
  display:inline-block; 
  font-size:0.82rem; 
  font-weight:800; 
  padding:6px 18px; 
  border-radius:50px; 
  margin-bottom:20px; 
  background:#E8F7F5;
  color:#0EA5A0;
  border:1.5px dashed #0EA5A0;
  letter-spacing:1px;
  transform: rotate(-2deg);
  position: relative;
}

.hero-eyebrow::before {
  content: "✿ ";
  font-size: 0.7rem;
}

.hero h1 { 
  font-size: clamp(2.2rem, 4.5vw, 3.4rem); 
  line-height:1.18; 
  margin-bottom:20px; 
  font-weight:900;
  letter-spacing: -1px;
  color:#2E2A26;
  position: relative;
  display: inline-block;
}

.hero h1 .highlight {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.hero h1 .highlight::before {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: 4px;
  height: 38%;
  background: rgba(255,182,39,0.5);
  z-index: -1;
  border-radius: 2px;
  transform: rotate(-1deg);
}

.hero h1 .tegline {
  position: relative;
  z-index: 1;
  color: #FF5D5D;
}

.hero p { 
  font-size:1.05rem; 
  color:#6B625A; 
  max-width:560px; 
  margin-bottom:32px; 
  border-left: 3px solid #FFB627;
  padding-left: 16px;
}

.hero-buttons { display:flex; gap:14px; }

/* 装饰便签纸 */
.hero::before {
  content: "📎";
  position: absolute;
  top: 30%;
  right: 8%;
  font-size: 4rem;
  opacity: 0.15;
  transform: rotate(20deg);
}

.hero::marker {
  content: none;
}

/* === 按钮 — 纸感圆角按钮 === */
.btn { 
  display:inline-flex; 
  align-items:center; 
  gap:8px; 
  padding:13px 30px; 
  border-radius:50px; 
  font-weight:700; 
  cursor:pointer; 
  border:none; 
  text-decoration:none; 
  transition: all 0.25s ease;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
}

.btn-primary { 
  color:#fff; 
  background:linear-gradient(135deg, #FF5D5D, #FF7E6B); 
  box-shadow: 0 4px 14px rgba(255,93,93,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,93,93,0.4);
}

.btn-outline { 
  background:transparent; 
  border:2px solid #3D3833; 
  color:#3D3833;
}

.btn-outline:hover {
  background:#3D3833;
  color:#FBF8F3;
  transform: translateY(-3px);
}

/* === 标签/标题 — 图章风格 === */
.section-label { 
  display:inline-block; 
  font-size:0.75rem; 
  font-weight:800; 
  letter-spacing:3px; 
  margin-bottom:14px; 
  padding:4px 14px;
  border:2px solid #3D3833;
  border-radius:4px;
  transform: rotate(-3deg);
  background:#fff;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 rgba(61,56,51,0.15);
}

.section-title { 
  font-size:clamp(1.6rem, 3vw, 2.3rem); 
  margin-bottom:14px; 
  font-weight:900;
  color:#2E2A26;
  letter-spacing: -0.5px;
}

.section-title .dot-accent {
  color:#FF5D5D;
}

.section-desc { 
  max-width:600px; 
  opacity:0.65; 
  margin-bottom:44px; 
  font-size:0.98rem;
  line-height:1.8;
}

/* === 卡片网格 — 文件夹/便签卡片 === */
.cards-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:28px; }

.category-card { 
  border-radius:0px; 
  padding:28px 24px 24px; 
  border:none;
  background:#fff;
  border:1px solid #EAE4DC;
  position:relative;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(61,56,51,0.05);
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background-size: 8px 8px;
  background-image: linear-gradient(45deg, #FF5D5D 25%, transparent 25%, transparent 75%, #FF5D5D 75%);
  opacity: 0.3;
  border-radius: 0;
}

.category-card::after {
  content: "";
  position: absolute;
  top: 12px; right: 12px;
  width: 12px; height: 12px;
  background: #FFB627;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  transition: all 0.3s ease;
}

.category-card:nth-child(2)::after { background:#FF5D5D; }
.category-card:nth-child(3)::after { background:#0EA5A0; }
.category-card:nth-child(4)::after { background:#FFB627; }

.category-card:hover {
  transform: translateY(-5px) rotate(-0.5deg);
  box-shadow: 0 12px 32px rgba(61,56,51,0.1);
  border-color: #DED4CA;
}

.card-icon { 
  width:52px; height:52px; 
  border-radius:14px; 
  display:flex; align-items:center; justify-content:center; 
  margin-bottom:18px; 
  font-size:1.4rem;
  background:#FBF8F3;
  border:1px dashed #C5BEB4;
  transition: all 0.3s ease;
}

.category-card:hover .card-icon {
  background: #FF5D5D;
  border-color: #FF5D5D;
  color: #fff;
  transform: scale(1.05) rotate(-5deg);
}

.category-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #2E2A26;
}

.category-card p {
  font-size: 0.86rem;
  opacity: 0.6;
  margin-bottom: 16px;
  line-height: 1.7;
}

.card-link { 
  font-weight:700; 
  font-size:0.85rem; 
  text-decoration:none; 
  color:#FF5D5D;
  display:inline-flex;
  align-items:center;
  gap:4px;
  transition: gap 0.2s ease;
}

.card-link:hover { gap:10px; }
.card-link::after { content: "→"; }

/* === 特性块 — 章节交叉翻页 === */
.feature-block { 
  display:grid; 
  grid-template-columns:1fr 1fr; 
  gap:64px; 
  align-items:center; 
}

.feature-image { 
  border-radius:24px 24px 24px 8px; 
  overflow:hidden; 
  position:relative;
  box-shadow: -8px 8px 0 #FFB627;
  background: #E8F7F5;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image::after {
  content: "📺 90分钟";
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,93,93,0.9);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  transform: rotate(3deg);
}

.feature-image img { 
  width:100%; height:auto;
  min-height: 300px;
  object-fit: cover;
}

.feature-image .wall-pattern {
  width: 100%;
  min-height: 300px;
  background:
    linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px),
    linear-gradient(90deg, #FFE8D6 24%, #FFDDCA 25%, #FFDDCA 32%, transparent 33%),
    linear-gradient(135deg, #FFB627 0%, #FF8E5D 100%);
  background-size: 20px 20px, 20px 20px, 100% 40%, 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.85);
  font-weight: 900;
  letter-spacing: 4px;
  text-shadow: 3px 3px 0 rgba(255,93,93,0.3);
}

.feature-text { }

.feature-text h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #2E2A26;
}

.feature-text > p {
  margin-bottom: 20px;
  opacity: 0.65;
  font-size: 0.95rem;
}

.feature-list { list-style:none; margin-top: 18px; }

.feature-list li { 
  padding:10px 0; 
  display:flex; 
  align-items:center; 
  gap:12px; 
  font-weight:600;
  border-bottom:1px dotted #C5BEB4;
  font-size: 0.92rem;
}

.feature-list li::before { 
  content:'✓'; 
  font-weight:900; 
  width:24px; height:24px;
  background:#E8F7F5;
  color:#0EA5A0;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.8rem;
  flex-shrink: 0;
}

/* === 数据条 — 卷尺贴纸风格 === */
.stats-bar { 
  display:grid; 
  grid-template-columns:repeat(4,1fr); 
  gap:20px; 
  text-align:center; 
  background:#fff;
  border:2px solid #3D3833;
  border-radius:16px;
  padding:28px 20px;
  box-shadow: 6px 6px 0 rgba(61,56,51,0.12);
  margin: 0 8px;
}

.stat-item { 
  padding:16px; 
  border-right:2px dashed #DED4CA; 
  position:relative;
}

.stat-item:last-child { border-right: none; }

.stat-number { 
  font-size:2.4rem; 
  font-weight:900; 
  color:#2E2A26;
  letter-spacing:-1px;
  line-height:1.1;
  display: block;
}

.stat-number sup {
  font-size: 1rem;
  color: #FF5D5D;
  font-weight: 800;
}

.stat-label { 
  font-size:0.82rem; 
  opacity:0.55; 
  margin-top:6px; 
  font-weight:600;
  letter-spacing: 1px;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 20px;
  background: #FBF8F3;
  border-radius: 50%;
  opacity: 1;
}

/* === 内容墙 — 海报堆叠文件 === */
.content-wall { 
  display:grid; 
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); 
  gap:28px; 
}

.content-wall-item { 
  border-radius:0px; 
  overflow:hidden; 
  background:#fff;
  border:1px solid #EAE4DC;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position:relative;
}

.content-wall-item:hover { 
  transform: translateY(-8px) rotate(0.5deg); 
  box-shadow: 0 16px 40px rgba(61,56,51,0.12);
  border-color: #FFB627;
  z-index: 2;
}

.content-wall-item img { 
  width:100%; 
  height:210px; 
  object-fit:cover; 
  background: linear-gradient(135deg, #FFE8D6, #FFC9A3) !important;
  transition: transform 0.5s ease;
}

.content-wall-item:hover img { transform: scale(1.05); }

.content-wall-body { padding:22px; position:relative; }

.content-wall-body::before {
  content: "连载中";
  position: absolute;
  top: -42px; right: 14px;
  background: #FF5D5D;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  transform: rotate(2deg);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.15);
}

.content-wall-item:nth-child(even) .content-wall-body::before {
  content: "已完结";
  background: #0EA5A0;
  transform: rotate(-2deg);
}

.content-wall-body h4 {
  font-weight: 800;
  font-size: 1.02rem;
  margin-bottom: 8px;
  color: #2E2A26;
}

.content-wall-body p {
  font-size: 0.84rem;
  opacity: 0.6;
  margin-bottom: 12px;
  line-height: 1.6;
}

.content-wall-body .meta {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0EA5A0;
  display: flex;
  gap: 12px;
  border-top: 1px dashed #DED4CA;
  padding-top: 12px;
}

/* === FAQ — 标尺虚线表单 === */
.faq-list { max-width:800px; margin:0 auto; border:2px solid #3D3833; border-radius:16px; overflow:hidden; box-shadow: 6px 6px 0 rgba(61,56,51,0.1); background:#fff; }

.faq-item { 
  border-bottom:1px solid #EAE4DC; 
  overflow:hidden; 
  cursor:pointer; 
  transition: background 0.2s;
}

.faq-item:last-child { border-bottom: none; }

.faq-item:hover { background:#FAF6F1; }

.faq-item .faq-question { 
  padding:20px 24px; 
  font-weight:700; 
  display:flex; 
  justify-content:space-between; 
  font-size:0.95rem;
  color:#2E2A26;
  position:relative;
}

.faq-item .faq-question::before {
  content: "Q ";
  color: #FF5D5D;
  font-weight: 900;
  margin-right: 6px;
}

.faq-item .faq-question::after { 
  content:"+"; 
  width:28px; height:28px;
  border:1px solid #C5BEB4;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:1rem;
  color:#3D3833;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item .faq-question span { flex:1; margin-left: 4px; }

.faq-item .faq-answer { 
  padding:0 24px 22px; 
  display:none; 
  opacity:0.7; 
  font-size:0.9rem;
  line-height:1.8;
  border-left: 3px solid #FFB627;
  margin-left: 24px;
}

.faq-item.open .faq-answer { display:block; animation: faqOpen 0.3s ease; }

.faq-item.open .faq-question::after { 
  content:"−"; 
  background:#FF5D5D; 
  border-color:#FF5D5D; 
  color:#fff;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 0.7; transform: translateY(0); }
}

/* === CTA横幅 — 电影票样式 === */
.cta-banner { 
  padding:64px 56px; 
  text-align:center; 
  border-radius:24px 24px 24px 12px; 
  color:#fff; 
  background:linear-gradient(120deg, #FF5D5D 0%, #FF7E6B 55%, #FF8E5D 100%);
  position:relative;
  overflow:hidden;
  box-shadow: 0 16px 48px rgba(255,93,93,0.3);
}

.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  width: 20px; height: 44px;
  background: #FBF8F3;
  border-radius: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.cta-banner::before { left: -10px; }
.cta-banner::after { right: -10px; }

.cta-banner::marker {
  content: none;
}

.cta-banner .cta-ticket-hole {
  position: absolute;
  left: 30px; top: 30px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  filter: blur(1px);
}

.cta-banner h2 { 
  color:#fff; 
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  position: relative;
}

.cta-banner .btn-primary { 
  background:#fff; 
  color:#FF5D5D!important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  margin-top: 10px;
  font-weight: 800;
}

.cta-banner .btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* === 页脚 — 便笺底部 === */
.site-footer { 
  padding:64px 0 28px; 
  background:#F3EFE9;
  border-top: 4px solid #3D3833;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, #FFB627 0 20px, transparent 20px 40px);
}

.site-footer .container { }

.footer-grid { 
  display:grid; 
  grid-template-columns:2fr 1fr 1fr 1fr; 
  gap:48px; 
  margin-bottom: 40px;
}

.footer-brand { }

.footer-brand h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #2E2A26;
}

.footer-brand p {
  font-size: 0.85rem;
  opacity: 0.65;
  max-width: 320px;
  line-height: 1.8;
}

.footer-col { }

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #2E2A26;
  letter-spacing: 0.5px;
}

.footer-col ul { list-style: none; }

.footer-col li {
  margin-bottom: 10px;
  font-size: 0.85rem;
  opacity: 0.6;
  transition: color 0.2s;
}

.footer-col li:hover { opacity: 1; color: #FF5D5D; cursor: pointer; }

.footer-bottom { 
  border-top:1px solid #DED4CA; 
  margin-top:32px; 
  padding-top:24px; 
  text-align:center; 
  font-size:0.82rem; 
  opacity:0.55;
}

.footer-bottom .heart {
  color: #FF5D5D;
  animation: heartbeat 1.5s ease infinite;
  display: inline-block;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

/* === 工具类 === */
.text-accent { color:#FF5D5D; }

.text-center { text-align:center; }

.seo-description { 
  max-width:620px; 
  margin:0 auto 48px; 
  opacity:0.65; 
  font-size:0.95rem;
  line-height:1.9;
}

.mt-0 { margin-top:0; }

.mb-0 { margin-bottom:0; }

/* 额外纯装饰元素 */
.sticky-note {
  position: absolute;
  width: 90px;
  height: 90px;
  background: #FFB627;
  padding: 14px;
  font-size: 0.6rem;
  font-weight: 700;
  transform: rotate(5deg);
  box-shadow: 3px 5px 10px rgba(61,56,51,0.12);
  opacity: 0.35;
  z-index: 0;
  font-family: inherit;
  line-height: 1.4;
  border-radius: 2px;
}

.sticky-note::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 10px;
  background: rgba(255,255,255,0.4);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* 纸张纹理背景 */
.section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* 页脚SEO段落 */
.footer-seo {
  margin-top: 32px;
  font-size: 0.76rem;
  opacity: 0.5;
  line-height: 1.8;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-top: 1px solid #DED4CA;
  padding-top: 20px;
}

/* === 响应式 === */
@media (max-width: 768px) {
  .feature-block { grid-template-columns:1fr; gap:40px; }
  .stats-bar { grid-template-columns:repeat(2,1fr); gap:16px; }
  .stat-item:nth-child(2) { border-right:none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom:2px dashed #DED4CA; padding-bottom: 20px; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom:2px dashed #DED4CA; padding-bottom: 20px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
  .main-nav { display:none; }
  .menu-toggle { display:flex; }
  .main-nav.open { 
    display:flex; 
    flex-direction:column; 
    position:absolute; 
    top:72px; 
    left:0; 
    width:100%; 
    background:#FBF8F3; 
    padding:24px; 
    border-bottom: 2px solid #3D3833;
    box-shadow: 0 12px 24px rgba(61,56,51,0.1);
    z-index: 999;
  }
  .main-nav.open a { padding: 8px 0; font-size: 1rem; }
  .main-nav.open .nav-cta { margin-top: 10px; text-align: center; }
  .hero { min-height:65vh; padding-top: 96px; }
  .cta-banner { padding:48px 32px; }
}

@media (max-width: 480px) {
  .cards-grid, .content-wall, .stats-bar { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .hero-buttons { flex-direction:column; }
  .btn { justify-content:center; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.95rem; }
  .section { padding: 60px 0; }
  .header-inner { padding: 0 16px; }
  .container { padding: 0 16px; }
  .hero-eyebrow { font-size: 0.7rem; padding: 5px 12px; }
  .btn { padding: 12px 20px; font-size: 0.85rem; width: 100%; }
}