/* 蘑菇视频官网 - 自然治愈风格主样式 */
:root {
  --cream: #f8f4ef;
  --warm-white: #fdfaf6;
  --sage: #8fa98a;
  --sage-light: #b8cdb4;
  --sage-dark: #5a7a55;
  --wood: #c4a882;
  --wood-light: #e8d8c4;
  --warm-gray: #a09890;
  --charcoal: #3d3530;
  --text-main: #4a4038;
  --text-light: #7a6e66;
  --text-muted: #a09890;
  --border: #e2d8ce;
  --shadow: rgba(100, 80, 60, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'STHeiti', sans-serif;
  background-color: var(--warm-white);
  color: var(--text-main);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--sage-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== 顶部导航 ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 246, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1280px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.05em;
}

.site-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.9rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  padding: 0.3rem 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sage);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--sage-dark);
}

/* 搜索框 */
.search-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 10px 5%;
  display: none;
}

.search-bar.active {
  display: block;
}

.search-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-input {
  flex: 1;
  border: 1px solid var(--border);
  background: white;
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 0.9rem;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.3s;
  font-family: inherit;
}

.search-input:focus {
  border-color: var(--sage);
}

.search-btn {
  background: var(--sage);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 24px;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: inherit;
  transition: background 0.3s;
}

.search-btn:hover {
  background: var(--sage-dark);
}

.nav-search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 1.1rem;
  padding: 6px;
  transition: color 0.3s;
}

.nav-search-toggle:hover {
  color: var(--sage-dark);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s;
}

/* ===== 通用容器 ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--cream);
}

.section-title {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ===== 首屏 Hero ===== */
.hero {
  position: relative;
  height: 90vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(253,250,246,0.85) 40%, rgba(253,250,246,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 0 5%;
  animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--sage-dark);
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: 4px 12px;
  border: 1px solid var(--sage-light);
  border-radius: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--sage);
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid var(--sage);
}

.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90,122,85,0.25);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--charcoal);
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
  transform: translateY(-2px);
}

/* ===== 视频卡片区 ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(100,80,60,0.15);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-play-btn {
  opacity: 1;
}

.play-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--sage-dark);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.video-card:hover .play-icon {
  transform: scale(1);
}

.video-info {
  padding: 1.2rem;
}

.video-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--sage-dark);
  background: rgba(143,169,138,0.12);
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 0.6rem;
}

.video-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.video-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== 品牌日常模块 ===== */
.daily-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.daily-grid.reverse {
  direction: rtl;
}

.daily-grid.reverse > * {
  direction: ltr;
}

.daily-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px var(--shadow);
}

.daily-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.daily-img:hover img {
  transform: scale(1.03);
}

.daily-text {
  padding: 1rem 0;
}

.daily-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.daily-text h2 {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 1.2rem;
}

.daily-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 1rem;
}

.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tag {
  font-size: 0.8rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 4px 14px;
  border-radius: 20px;
  transition: all 0.3s;
}

.tag:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
}

/* ===== 品牌理念 ===== */
.concept-block {
  background: var(--cream);
  border-radius: 24px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.concept-block::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: var(--sage-light);
  border-radius: 50%;
  opacity: 0.2;
}

.concept-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--sage);
}

.concept-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.concept-card {
  background: white;
  border-radius: 16px;
  padding: 1.8rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.concept-card:hover {
  transform: translateY(-4px);
}

.concept-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.concept-card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.concept-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== 品牌好物 ===== */
.goods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.goods-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goods-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(100,80,60,0.12);
}

.goods-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.goods-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.goods-card:hover .goods-img img {
  transform: scale(1.05);
}

.goods-body {
  padding: 1.5rem;
}

.goods-category {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.goods-body h3 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.goods-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.goods-mood {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.mood-tag {
  font-size: 0.75rem;
  color: var(--wood);
  background: rgba(196,168,130,0.1);
  padding: 3px 10px;
  border-radius: 12px;
}

/* ===== 品牌陪伴 ===== */
.accompany-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.accompany-img {
  border-radius: 20px;
  overflow: hidden;
}

.accompany-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.accompany-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem;
  border-radius: 16px;
  transition: background 0.3s;
}

.step-item:hover {
  background: var(--cream);
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--sage-dark);
  font-weight: 600;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== 品牌札记 ===== */
.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.note-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.note-card:hover {
  transform: translateY(-4px);
}

.note-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.note-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.note-card:hover .note-img img {
  transform: scale(1.05);
}

.note-body {
  padding: 1.3rem;
}

.note-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.note-body h3 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.note-body p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== 用户评价 ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: white;
  border-radius: 16px;
  padding: 1.8rem;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}

.review-card:hover {
  border-color: var(--sage-light);
  transform: translateY(-3px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--sage-dark);
  font-weight: 600;
}

.reviewer-info h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
}

.reviewer-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.9;
  font-style: italic;
}

.review-mood {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: var(--sage);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  gap: 1rem;
}

.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--sage);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--sage-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.9;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 1rem;
}

/* ===== 品牌相遇 ===== */
.encounter-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.encounter-img {
  border-radius: 20px;
  overflow: hidden;
}

.encounter-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.encounter-info h2 {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.encounter-info > p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-item .icon {
  width: 36px;
  height: 36px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.qr-row {
  display: flex;
  gap: 1.5rem;
}

.qr-item {
  text-align: center;
}

.qr-placeholder {
  width: 90px;
  height: 90px;
  background: var(--cream);
  border: 1px dashed var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.qr-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== 页脚 ===== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 3rem 5% 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.footer-brand .logo-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.8;
  max-width: 260px;
}

.footer-links h4 {
  font-size: 0.85rem;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: var(--sage-light);
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-bottom .icp {
  color: rgba(255,255,255,0.4);
}

/* ===== 下载页 ===== */
.download-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sage-light) 100%);
  padding: 80px 5%;
  text-align: center;
}

.download-hero h1 {
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.download-hero p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
}

.download-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--charcoal);
  color: white;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.download-btn:hover {
  background: var(--sage-dark);
  color: white;
  transform: translateY(-3px);
}

.download-btn .btn-icon {
  font-size: 1.5rem;
}

.download-btn .btn-text small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.7;
}

/* ===== 面包屑 ===== */
.breadcrumb {
  padding: 1rem 5%;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--sage-dark);
}

.breadcrumb span {
  margin: 0 0.4rem;
}

/* ===== 动画 ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .concept-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .goods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .notes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 1.5rem 5%;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px var(--shadow);
    gap: 1rem;
  }

  .main-nav.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    height: 75vh;
  }

  .hero-content {
    max-width: 100%;
  }

  .daily-grid,
  .daily-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 1.5rem;
  }

  .accompany-layout,
  .encounter-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .video-grid,
  .goods-grid,
  .notes-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .concept-cards {
    grid-template-columns: 1fr;
  }

  .concept-block {
    padding: 2rem;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary, .btn-outline {
    text-align: center;
  }
}
