/* ========================================
   香蕉影视 - 自然治愈风格主样式
   Natural Healing Lifestyle Brand CSS
   ======================================== */

:root {
  --cream: #faf8f4;
  --warm-white: #f5f2ec;
  --beige: #e8e0d0;
  --sand: #d4c9b0;
  --warm-gray: #9a9088;
  --dark-brown: #3d3530;
  --medium-brown: #6b5e52;
  --light-brown: #a08c78;
  --sage: #8a9e88;
  --sage-light: #c5d4c2;
  --sage-dark: #5a7558;
  --warm-green: #7a9478;
  --accent: #b8956a;
  --accent-light: #d4b48a;
  --text-primary: #3d3530;
  --text-secondary: #6b5e52;
  --text-light: #9a9088;
  --border: #e0d8cc;
  --shadow: rgba(61, 53, 48, 0.08);
  --font-serif: 'Noto Serif SC', 'Georgia', serif;
  --font-sans: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--text-primary);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-primary);
}

h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--warm-white);
}

.section-sage {
  background-color: #eef2ec;
}

/* ---- Header & Navigation ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  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;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--sage), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  display: block;
  margin-top: -2px;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.main-nav a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.5rem 0.8rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--sage-dark);
  background-color: var(--sage-light);
  background-color: rgba(138, 158, 136, 0.12);
}

/* Search Bar */
.search-bar-wrap {
  display: flex;
  align-items: center;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 0.3rem 0.8rem;
  gap: 0.5rem;
  transition: border-color 0.3s ease;
}

.search-bar-wrap:focus-within {
  border-color: var(--sage);
}

.search-bar-wrap input {
  border: none;
  background: transparent;
  font-size: 0.85rem;
  color: var(--text-primary);
  outline: none;
  width: 160px;
  font-family: var(--font-sans);
}

.search-bar-wrap input::placeholder {
  color: var(--text-light);
}

.search-bar-wrap button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  padding: 0;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--text-primary);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ---- Search Section Below Nav ---- */
.search-section {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 2rem;
}

.search-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-section-inner label {
  font-size: 0.82rem;
  color: var(--text-light);
  white-space: nowrap;
}

.search-full {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 600px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 0.45rem 1rem;
  gap: 0.6rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-full:focus-within {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(138, 158, 136, 0.1);
}

.search-full input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  color: var(--text-primary);
  outline: none;
  font-family: var(--font-sans);
}

.search-full input::placeholder {
  color: var(--text-light);
}

.search-full button {
  background: var(--sage);
  border: none;
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  color: white;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: var(--font-sans);
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s 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(250, 248, 244, 0.88) 0%,
    rgba(250, 248, 244, 0.55) 50%,
    rgba(250, 248, 244, 0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 0 2rem 0 max(2rem, calc((100vw - 1200px) / 2 + 2rem));
  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;
  background: rgba(138, 158, 136, 0.15);
  color: var(--sage-dark);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(138, 158, 136, 0.3);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.hero h1 em {
  font-style: normal;
  color: var(--sage-dark);
}

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

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sage-dark);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.btn-primary:hover {
  background: var(--dark-brown);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90, 117, 88, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-secondary);
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--warm-white);
  color: var(--text-primary);
  border-color: var(--sand);
}

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--sage-dark);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-header h2 {
  margin-bottom: 0.8rem;
}

.section-header p {
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--text-light);
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--sage);
  margin: 1rem auto;
  border-radius: 2px;
}

/* ---- Video Section ---- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
}

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

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(61, 53, 48, 0.14);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--beige);
}

.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(61, 53, 48, 0);
  transition: background 0.3s ease;
}

.video-card:hover .video-play-btn {
  background: rgba(61, 53, 48, 0.25);
}

.play-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--sage-dark);
  margin-left: 4px;
}

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

.video-meta {
  padding: 1.2rem;
}

.video-tag {
  font-size: 0.72rem;
  color: var(--sage-dark);
  background: rgba(138, 158, 136, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  margin-bottom: 0.6rem;
  display: inline-block;
}

.video-meta h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.video-meta p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-light);
}

.video-stats span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ---- Daily Life Section ---- */
.daily-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

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

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

.daily-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.daily-text {
  padding: 1rem;
}

.daily-text .tag {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--sage-dark);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: block;
}

.daily-text h2 {
  margin-bottom: 1rem;
}

.daily-text p {
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.keyword-tag {
  background: var(--warm-white);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.78rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

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

/* ---- Concept Section ---- */
.concept-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.concept-img {
  border-radius: 24px;
  overflow: hidden;
}

.concept-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-text blockquote {
  border-left: 3px solid var(--sage);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  color: var(--text-secondary);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
}

.value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.value-tag {
  background: rgba(138, 158, 136, 0.1);
  border: 1px solid rgba(138, 158, 136, 0.3);
  color: var(--sage-dark);
  font-size: 0.82rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
}

/* ---- Products Section ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px var(--shadow);
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(61, 53, 48, 0.12);
}

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

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

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

.product-info {
  padding: 1.4rem;
}

.product-category {
  font-size: 0.72rem;
  color: var(--sage-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.product-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.product-feel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.feel-tag {
  font-size: 0.72rem;
  color: var(--accent);
  background: rgba(184, 149, 106, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
}

/* ---- Accompany Section ---- */
.accompany-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 2px 16px var(--shadow);
  transition: all 0.4s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(61, 53, 48, 0.1);
}

.step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: white;
  margin: 0 auto 1.2rem;
}

.step-card h4 {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.step-card p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ---- Notes Section ---- */
.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.note-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 14px var(--shadow);
  transition: all 0.4s ease;
}

.note-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(61, 53, 48, 0.12);
}

.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.4rem;
}

.note-date {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: block;
}

.note-body h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.note-body p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.note-link {
  font-size: 0.82rem;
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.3s ease;
}

.note-link:hover {
  gap: 0.6rem;
  color: var(--sage-dark);
}

/* ---- Reviews Section ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: white;
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 2px 14px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  color: var(--sage-light);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(61, 53, 48, 0.1);
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--beige));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.reviewer-tag {
  font-size: 0.72rem;
  color: var(--text-light);
  display: block;
}

.review-stars {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.1em;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

.review-moment {
  margin-top: 0.8rem;
  font-size: 0.75rem;
  color: var(--text-light);
  font-style: italic;
}

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

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  gap: 1rem;
}

.faq-question h4 {
  font-size: 0.98rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.5;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  color: var(--text-light);
}

.faq-item.open .faq-toggle {
  background: var(--sage);
  color: white;
  border-color: var(--sage);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

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

.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin: 0;
}

/* ---- Meeting Section ---- */
.meeting-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.meeting-img {
  border-radius: 24px;
  overflow: hidden;
}

.meeting-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meeting-text h2 {
  margin-bottom: 1rem;
}

.meeting-text > p {
  margin-bottom: 2rem;
  line-height: 1.9;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: var(--warm-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.contact-item:hover {
  border-color: var(--sage);
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(138, 158, 136, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.75rem;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-value {
  font-size: 0.9rem;
  color: var(--text-primary);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--dark-brown);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text {
  color: white;
  font-size: 1.2rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-top: 0.8rem;
  line-height: 1.8;
}

.footer-col h5 {
  color: white;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.83rem;
  transition: color 0.3s ease;
}

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

.footer-qr {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

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

.qr-box {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  font-size: 0.6rem;
  color: var(--text-light);
  padding: 4px;
}

.qr-box svg {
  width: 100%;
  height: 100%;
}

.qr-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
}

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

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}

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

/* ---- Page Banner ---- */
.page-banner {
  background: linear-gradient(135deg, var(--warm-white), var(--beige));
  padding: 4rem 2rem;
  text-align: center;
}

.page-banner h1 {
  margin-bottom: 0.8rem;
}

.page-banner p {
  max-width: 500px;
  margin: 0 auto;
  color: var(--text-light);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  padding: 0.8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

/* ---- Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .accompany-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0.8rem 1rem;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px var(--shadow);
  }

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

  .main-nav a {
    padding: 0.7rem 1rem;
    width: 100%;
    border-radius: 8px;
  }

  .search-bar-wrap {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    height: 70vh;
    min-height: 500px;
  }

  .hero-overlay {
    background: rgba(250, 248, 244, 0.75);
  }

  .daily-grid,
  .concept-wrap,
  .meeting-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .accompany-steps {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

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

  .btn-primary, .btn-secondary {
    justify-content: center;
  }
}
