/* ============================================
   自境心 MYREALM - Brand Landing Page Styles
   Eastern Zen x Nature Healing x Modern Elegance
   ============================================ */

/* === CSS Custom Properties === */
:root {
  --color-deep-green: #2d4a3e;
  --color-dark-green: #1a3329;
  --color-mid-green: #3d5a4e;
  --color-gold: #c9a96e;
  --color-light-gold: #d4b87a;
  --color-warm-white: #f5f0e8;
  --color-moss: #a8b8a0;
  --color-night: #0d1f17;

  --font-serif: 'Noto Serif SC', 'Songti SC', 'SimSun', serif;
  --font-sans: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;

  --ease-breath: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-gentle: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* === Base & Reset === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--color-warm-white);
  background-color: var(--color-dark-green);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  line-height: 1.8;
}

/* === Background Landscape === */
.bg-landscape {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 60% at 50% 20%, rgba(61,90,78,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 80% 40% at 30% 60%, rgba(45,74,62,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 30% at 70% 40%, rgba(61,90,78,0.2) 0%, transparent 50%),
    linear-gradient(180deg,
      var(--color-night) 0%, #122820 8%, var(--color-dark-green) 20%,
      var(--color-deep-green) 45%, var(--color-mid-green) 60%,
      var(--color-deep-green) 75%, var(--color-dark-green) 90%, var(--color-night) 100%
    );
}

.bg-mist {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 20% at 50% 55%, rgba(168,184,160,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 80% 15% at 30% 65%, rgba(245,240,232,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 60% 10% at 70% 50%, rgba(168,184,160,0.04) 0%, transparent 50%);
  animation: mistFloat 20s var(--ease-breath) infinite alternate;
}

@keyframes mistFloat {
  0% { opacity: 0.6; transform: translateX(0); }
  50% { opacity: 1; }
  100% { opacity: 0.7; transform: translateX(-10px); }
}

.mountains-far { position: absolute; bottom: 15%; left: 0; width: 100%; height: 35%; opacity: 0.5; }
.mountains-mid { position: absolute; bottom: 8%; left: 0; width: 100%; height: 30%; opacity: 0.6; }
.mountains-near { position: absolute; bottom: 0; left: 0; width: 100%; height: 22%; opacity: 0.8; }

.bg-water {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 12%;
  background: linear-gradient(180deg,
    rgba(26,51,41,0.3) 0%, rgba(13,31,23,0.6) 50%, rgba(13,31,23,0.9) 100%
  );
}

.bg-water::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(201,169,110,0.15) 30%, rgba(201,169,110,0.2) 50%,
    rgba(201,169,110,0.15) 70%, transparent 100%
  );
}

/* === Vertical Decorative Text === */
.vertical-text {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.5em;
  color: var(--color-gold);
  opacity: 0.35;
  z-index: 10;
  user-select: none;
}

.vertical-dot { margin: 0.5em 0; font-size: 0.6em; opacity: 0.6; }

/* === Page Container === */
.page-container {
  position: relative;
  z-index: 5;
  max-width: 880px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === Shared Section Styles === */
.section-block {
  width: 100%;
  padding: 3.5rem 0;
  text-align: center;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--color-warm-white);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.section-body {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.section-body p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-moss);
  line-height: 2;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.lead-text {
  font-size: 1.05rem !important;
  color: var(--color-warm-white) !important;
  font-weight: 400 !important;
  line-height: 2 !important;
}

.highlight-text {
  color: var(--color-light-gold) !important;
  font-family: var(--font-serif);
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* === Gold Divider === */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  margin: 1.5rem auto;
  position: relative;
}

.gold-divider.short { width: 120px; }
.gold-divider.tiny { width: 80px; margin: 1rem auto; }

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
  opacity: 0.4;
}

.divider-diamond {
  display: inline-block;
  width: 6px; height: 6px;
  margin: 0 12px;
  border: 1px solid var(--color-gold);
  transform: rotate(45deg);
  opacity: 0.5;
}

/* === Section 1: Hero === */
.section-hero {
  text-align: center;
  padding: 2rem 0 3rem;
  position: relative;
  overflow: visible;
}

.brand-company {
  margin-top: 0.8rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--color-warm-white);
  letter-spacing: 0;
  opacity: 1;
  font-weight: 400;
  line-height: 2;
}

.logo-wrapper {
  width: 120px; height: auto;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-wrapper::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
}

.logo-svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 12px rgba(201,169,110,0.15));
}

/* LOGO特效 - 温柔呼吸光晕 */
@keyframes logoSoftGlow {
  0%, 100% {
    filter: drop-shadow(0 0 15px rgba(201,169,110,0.35)) drop-shadow(0 0 30px rgba(201,169,110,0.15));
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(201,169,110,0.6)) drop-shadow(0 0 50px rgba(201,169,110,0.3));
  }
}

.logo-container {
  position: relative;
  display: inline-block;
}

.logo-img {
  position: relative;
  z-index: 10;
  width: 120px;
  height: 120px;
  object-fit: contain;
  animation: logoSoftGlow 5s ease-in-out infinite;
  transition: transform 0.6s ease;
}

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

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-warm-white);
  letter-spacing: 0.3em;
}

.brand-en {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--color-gold);
  opacity: 0.7;
  margin-left: 0.5em;
  vertical-align: middle;
}

.hero-slogan {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: var(--color-light-gold);
  letter-spacing: 0.25em;
  margin-top: 0.5rem;
  opacity: 0.85;
}

/* === Section 3: Brand Meaning === */
.brand-meaning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.meaning-card {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(201,169,110,0.15);
  background: rgba(201,169,110,0.02);
  transition: all 0.5s var(--ease-breath);
}

.meaning-card:hover {
  border-color: rgba(201,169,110,0.3);
  background: rgba(201,169,110,0.04);
  box-shadow: 0 0 24px rgba(201,169,110,0.06);
}

.meaning-char {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-gold);
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}

.meaning-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--color-moss);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.meaning-en {
  margin-top: 1.5rem;
  text-align: center;
}

.meaning-en p {
  font-size: 0.9rem;
  color: var(--color-moss);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.meaning-en strong {
  color: var(--color-gold);
  font-weight: 500;
}

/* === Section 4: Core Philosophy === */
.philosophy-main-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--color-warm-white);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.cross-mark {
  color: var(--color-gold);
  font-size: 0.8em;
  margin: 0 0.3em;
  opacity: 0.6;
}

.philosophy-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.philosophy-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(201,169,110,0.12);
  background: rgba(201,169,110,0.02);
  transition: all 0.5s var(--ease-breath);
}

.philosophy-card:hover {
  border-color: rgba(201,169,110,0.25);
  background: rgba(201,169,110,0.04);
}

.philosophy-card-icon {
  width: 48px; height: 48px;
  margin: 0 auto 1rem;
  color: var(--color-gold);
  opacity: 0.7;
}

.philosophy-card-icon svg { width: 100%; height: 100%; }

.philosophy-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-warm-white);
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
}

.philosophy-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--color-moss);
  line-height: 1.8;
}

/* Science Decoding Table */
.subtitle-centered {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-light-gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.decoding-table {
  max-width: 600px;
  margin: 0 auto;
}

.decoding-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.08);
  gap: 1rem;
}

.decoding-row:last-child { border-bottom: none; }

.decoding-left {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--color-warm-white);
  letter-spacing: 0.1em;
  min-width: 100px;
  text-align: right;
  font-weight: 500;
}

.decoding-arrow {
  color: var(--color-gold);
  font-size: 1rem;
  opacity: 0.5;
  flex-shrink: 0;
}

.decoding-right {
  font-size: 0.88rem;
  color: var(--color-moss);
  min-width: 160px;
  text-align: left;
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* === Section 5: Business Blocks === */
.business-block {
  margin-top: 2.5rem;
  text-align: left;
  border: 1px solid rgba(201,169,110,0.12);
  background: rgba(201,169,110,0.015);
  padding: 2.5rem 2rem;
}

.business-header {
  text-align: center;
  margin-bottom: 2rem;
}

.business-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-gold);
  border: 1px solid rgba(201,169,110,0.4);
  padding: 0.2em 0.8em;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
  opacity: 0.8;
}

.business-header h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-warm-white);
  letter-spacing: 0.1em;
}

.service-sub { margin-bottom: 2rem; }
.service-sub:last-child { margin-bottom: 0; }

.sub-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-light-gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sub-icon {
  width: 20px; height: 20px;
  color: var(--color-gold);
  opacity: 0.6;
  flex-shrink: 0;
}

.inline-desc {
  font-size: 0.9rem;
  color: var(--color-moss);
  line-height: 1.8;
  font-weight: 300;
}

/* Service List */
.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  font-size: 0.9rem;
  color: var(--color-moss);
  line-height: 1.8;
  font-weight: 300;
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 4px; height: 4px;
  border: 1px solid var(--color-gold);
  transform: rotate(45deg);
  opacity: 0.5;
}

/* Service Cards */
.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.service-cards--3col {
  grid-template-columns: 1fr 1fr 1fr;
}

.service-card {
  padding: 1.2rem;
  border: 1px solid rgba(201,169,110,0.1);
  background: rgba(201,169,110,0.02);
  transition: all 0.4s var(--ease-breath);
}

.service-card:hover {
  border-color: rgba(201,169,110,0.2);
  background: rgba(201,169,110,0.04);
}

.card-num {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--color-gold);
  opacity: 0.5;
  display: block;
  margin-bottom: 0.4rem;
  letter-spacing: 0.1em;
}

.service-card h5 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-warm-white);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.82rem;
  color: var(--color-moss);
  line-height: 1.7;
  font-weight: 300;
}

/* Ladder Stages */
.ladder-stages {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.ladder-stage {
  text-align: center;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(201,169,110,0.12);
  background: rgba(201,169,110,0.02);
  min-width: 120px;
}

.stage-label {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.3rem;
  letter-spacing: 0.1em;
}

.ladder-stage p {
  font-size: 0.75rem;
  color: var(--color-moss);
  font-weight: 300;
  line-height: 1.5;
}

.ladder-arrow {
  color: var(--color-gold);
  font-size: 1rem;
  opacity: 0.4;
  flex-shrink: 0;
}

/* === Section 6: Differences === */
.differences-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.diff-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(201,169,110,0.12);
  background: rgba(201,169,110,0.02);
  transition: all 0.5s var(--ease-breath);
}

.diff-card:hover {
  border-color: rgba(201,169,110,0.25);
  background: rgba(201,169,110,0.04);
  box-shadow: 0 0 20px rgba(201,169,110,0.05);
}

.diff-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-gold);
  opacity: 0.35;
  display: block;
  margin-bottom: 0.8rem;
  line-height: 1;
}

.diff-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-warm-white);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.diff-card p {
  font-size: 0.85rem;
  color: var(--color-moss);
  font-weight: 300;
  line-height: 1.6;
}

/* === Section 7: Brand Spirit === */
.section-spirit {
  background: rgba(201,169,110,0.02);
  border-top: 1px solid rgba(201,169,110,0.08);
  border-bottom: 1px solid rgba(201,169,110,0.08);
  padding: 3.5rem 2rem;
}

.spirit-list {
  max-width: 600px;
  margin: 1.5rem auto 0;
}

.spirit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  text-align: left;
}

.spirit-mark {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-gold);
  opacity: 0.4;
  flex-shrink: 0;
  line-height: 1.8;
}

.spirit-item p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--color-moss);
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.spirit-highlight {
  /* 与其他 spirit-item 保持一致 */
}

/* === Section 8: Founder === */
.founder-header {
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.founder-avatar-large {
  width: 160px; height: 160px;
  margin: 0 auto 1.2rem;
  position: relative;
}

.founder-avatar-large::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
}

.founder-avatar-large svg { width: 100%; height: 100%; }

.founder-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(201,169,110,0.3);
}

.founder-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-warm-white);
  letter-spacing: 0.2em;
  margin-bottom: 0.3rem;
}

.founder-subtitle {
  font-size: 0.88rem;
  color: var(--color-gold);
  font-weight: 400;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* Founder Quotes */
.founder-quotes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201,169,110,0.08);
  border-bottom: 1px solid rgba(201,169,110,0.08);
}

.quote-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.quote-deco {
  font-size: 0.5rem;
  color: var(--color-gold);
  opacity: 0.4;
}

.quote-line p {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-light-gold);
  letter-spacing: 0.15em;
  font-weight: 400;
}

/* Founder Tags */
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.founder-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--color-moss);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 0.4em 1em;
  letter-spacing: 0.05em;
  background: rgba(201,169,110,0.03);
  transition: all 0.4s var(--ease-breath);
  line-height: 1.6;
}

.founder-tag:hover {
  border-color: rgba(201,169,110,0.4);
  color: var(--color-warm-white);
  background: rgba(201,169,110,0.06);
}

/* Founder Story */
.founder-story {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(201,169,110,0.12);
  background: rgba(201,169,110,0.02);
}

/* Founder Intro - wraps header + story */
.founder-intro {
  margin-bottom: 3rem;
}

/* Platform Mission Section */
.platform-mission {
  margin-top: 2rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.mission-card {
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(201,169,110,0.15);
  background: rgba(201,169,110,0.03);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,169,110,0.35);
  background: rgba(201,169,110,0.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.mission-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.1rem;
  color: #c9a96e;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 0.8rem;
}

.mission-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
}

.mission-text {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.9rem;
  color: rgba(245,240,232,0.8);
  line-height: 1.8;
  text-align: left;
}

@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .mission-card {
    padding: 1.5rem 1.2rem;
  }
  
  .mission-title {
    font-size: 1rem;
  }
  
  .mission-text {
    font-size: 0.85rem;
  }
}

.story-scroll-top,
.story-scroll-bottom {
  text-align: center;
  overflow: hidden;
}

.story-scroll-top svg,
.story-scroll-bottom svg {
  width: 100%;
  height: 20px;
}


.story-content {
  /* 正常文档流，不需要flex属性 */
}

.story-content p {
  font-size: 0.9rem;
  color: var(--color-moss);
  line-height: 2;
  margin-bottom: 1.2rem;
  text-align: left;
  letter-spacing: 0.03em;
  font-weight: 400;
  text-indent: 0;
}

.story-content p strong {
  color: var(--color-gold);
  font-weight: 600;
}

.story-quote {
  border-left: 2px solid var(--color-gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--color-gold) !important;
  font-size: 0.95rem !important;
  line-height: 2 !important;
  background: rgba(201,169,110,0.05);
  border-radius: 0 8px 8px 0;
  text-indent: 0 !important;
}

.story-vision {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,169,110,0.15);
}

.story-vision p {
  font-size: 0.9rem;
  color: var(--color-moss);
  line-height: 2;
  margin-bottom: 0.8rem;
  text-indent: 0 !important;
}

.vision-label {
  color: var(--color-gold);
  font-weight: 400;
}

.story-vision p strong {
  color: var(--color-gold);
  font-weight: 600;
}

.story-content p:last-child {
  margin-bottom: 0;
  color: var(--color-light-gold);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-indent: 2em;
}

/* === Section 9: Contact === */
.contact-block {
  margin-top: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(201,169,110,0.1);
  background: rgba(201,169,110,0.02);
}

.contact-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-warm-white);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.contact-company {
  font-size: 0.9rem;
  color: var(--color-moss);
  font-weight: 300;
  letter-spacing: 0.08em;
}

/* === Footer === */
.site-footer {
  padding: 3rem 0 2rem;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-slogan {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin: 2rem 0;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #a8b8a0;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  opacity: 0.7;
}

/* === Scroll Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-breath), transform 0.9s var(--ease-breath);
}

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

/* === Stagger Animation === */
.stagger-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-breath), transform 0.7s var(--ease-breath);
}

.stagger-item.stagger-visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Gold Divider Draw Animation === */
.gold-divider {
  overflow: hidden;
}

.gold-divider::before,
.gold-divider::after {
  transform: scaleX(0);
  transition: transform 0.8s var(--ease-breath);
}

.gold-divider.divider-drawn::before,
.gold-divider.divider-drawn::after {
  transform: scaleX(1);
}

.gold-divider .divider-diamond {
  opacity: 0;
  transform: rotate(45deg) scale(0);
  transition: opacity 0.5s var(--ease-breath) 0.4s, transform 0.5s var(--ease-breath) 0.4s;
}

.gold-divider.divider-drawn .divider-diamond {
  opacity: 0.5;
  transform: rotate(45deg) scale(1);
}

/* === Logo Breathing Animation === */
@keyframes logoBreath {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 12px rgba(201,169,110,0.15)); }
  50% { transform: scale(1.03); filter: drop-shadow(0 0 20px rgba(201,169,110,0.25)); }
}

.logo-breath {
  animation: logoBreath 6s var(--ease-breath) infinite;
}

/* === Gold Breathing Glow === */
@keyframes goldBreath {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.gold-divider.divider-drawn::before,
.gold-divider.divider-drawn::after {
  animation: goldBreath 4s var(--ease-breath) infinite;
}

/* === Particle Canvas === */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* === Background Mist Deep Layer === */
.bg-mist-deep {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 25% at 60% 45%, rgba(168,184,160,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 70% 20% at 40% 70%, rgba(245,240,232,0.02) 0%, transparent 50%);
  animation: mistFloatDeep 25s var(--ease-breath) infinite alternate-reverse;
}

@keyframes mistFloatDeep {
  0% { opacity: 0.5; transform: translateX(5px); }
  50% { opacity: 0.8; }
  100% { opacity: 0.6; transform: translateX(15px); }
}

/* === Hover Effects: Cards === */
.meaning-card,
.philosophy-card,
.diff-card,
.service-card,
.business-block {
  transition: transform 0.5s var(--ease-breath), box-shadow 0.5s var(--ease-breath), border-color 0.5s var(--ease-breath), background 0.5s var(--ease-breath);
}

.meaning-card:hover,
.philosophy-card:hover,
.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(201,169,110,0.08);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(201,169,110,0.06);
}

/* === Hover Effects: Icons === */
@keyframes iconGlow {
  0%, 100% { filter: drop-shadow(0 0 0 transparent); }
  50% { filter: drop-shadow(0 0 8px rgba(201,169,110,0.3)); }
}

.pillar-icon:hover svg,
.philosophy-card-icon:hover,
.column-icon:hover {
  animation: iconGlow 2s var(--ease-breath) infinite;
}

.pillar-icon:hover {
  transform: scale(1.08) rotate(3deg);
}

/* === Hover Effects: Tags === */
.founder-tag {
  transition: all 0.4s var(--ease-breath);
}

.founder-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201,169,110,0.1);
}

/* === Section Illustrations === */
.section-illustration {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s var(--ease-breath);
}

.section-illustration.illust-visible {
  opacity: 1;
}

.hero-illustration {
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 120px;
  z-index: -1;
}

.philosophy-illustration {
  top: -30px;
  right: -40px;
  width: 120px;
  height: 120px;
  z-index: -1;
}

.story-illustration {
  top: 10px;
  right: 10px;
  width: 60px;
  height: 80px;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease-breath);
}

.story-illustration.illust-visible {
  opacity: 1;
}

/* === Number Counter === */
.count-up {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-light-gold);
  display: inline-block;
  min-width: 1em;
  text-align: center;
}

/* === Core Philosophy relative positioning === */
.core-philosophy {
  position: relative;
}

/* === Founder Story relative positioning === */
.founder-story {
  position: relative;
}

/* === Smooth scroll === */
html {
  scroll-behavior: smooth;
}

/* === Card Glow Follow (mouse position tracking) === */
.meaning-card,
.philosophy-card,
.diff-card,
.service-card,
.business-block {
  position: relative;
  overflow: hidden;
}

.card-glow-active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle 150px at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(201,169,110,0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease;
}

/* === Title Glow on Hover === */
.section-title {
  transition: text-shadow 0.4s ease;
}

.section-title.title-glow {
  text-shadow:
    0 0 20px rgba(201,169,110,0.3),
    0 0 40px rgba(201,169,110,0.15);
}

/* === Divider Wave on Hover === */
.gold-divider {
  transition: transform 0.3s ease;
}

.gold-divider.divider-wave {
  animation: dividerWave 0.6s ease-in-out;
}

@keyframes dividerWave {
  0% { transform: scaleY(1); }
  25% { transform: scaleY(1.5); }
  50% { transform: scaleY(0.8); }
  75% { transform: scaleY(1.2); }
  100% { transform: scaleY(1); }
}

/* === Icon 360 Rotation on Hover === */
.pillar-icon:hover svg {
  animation: iconRotate360 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes iconRotate360 {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

/* === Reduced motion preference === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
  .stagger-item { opacity: 1; transform: none; }
  #particle-canvas { display: none; }
}

/* === Texture & Scrollbar === */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: overlay;
}

::selection { background: rgba(201,169,110,0.25); color: var(--color-warm-white); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-dark-green); }
::-webkit-scrollbar-thumb { background: rgba(201,169,110,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(201,169,110,0.5); }

/* === Responsive Design === */
@media (max-width: 768px) {
  .page-container { padding: 2rem 1.5rem; }
  .vertical-text { display: none; }

  /* Reduce particles on mobile */
  #particle-canvas { opacity: 0.5; }

  /* Hide illustrations on small screens for performance */
  .section-illustration { display: none; }

  .brand-meaning-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .meaning-card { padding: 1.5rem 1rem; }
  .meaning-char { font-size: 2.2rem; }

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

  .decoding-row { flex-wrap: wrap; gap: 0.3rem; }
  .decoding-left { text-align: center; min-width: auto; }
  .decoding-right { text-align: center; min-width: auto; }
  .decoding-arrow { display: none; }

  .service-cards { grid-template-columns: 1fr; }
  .service-cards--3col { grid-template-columns: 1fr; }

  .business-block { padding: 2rem 1.2rem; }

  .differences-grid { grid-template-columns: 1fr; gap: 1rem; }

  .ladder-stages { flex-direction: column; }
  .ladder-arrow { transform: rotate(90deg); }

  .founder-story { padding: 1.5rem 1.2rem; }
  .founder-tags { gap: 0.5rem; }
  .founder-tag { font-size: 0.72rem; padding: 0.35em 0.8em; }

  .section-spirit { padding: 3rem 1.2rem; }
  .spirit-item { gap: 0.8rem; }
}

@media (max-width: 480px) {
  .page-container { padding: 1.5rem 1rem; }
  .section-block { padding: 2.5rem 0; }
  .section-title { font-size: 1.3rem; letter-spacing: 0.1em; }
  .gold-divider { width: 140px; }
  .gold-divider.short { width: 100px; }
  .logo-wrapper { width: 100px; }
  .brand-name { font-size: 1.2rem; letter-spacing: 0.2em; }
  .hero-slogan { font-size: 1rem; letter-spacing: 0.15em; }
  .diff-card { padding: 1.5rem 1rem; }
  .diff-num { font-size: 1.5rem; }
  .ladder-stage { min-width: 100px; padding: 0.8rem; }
  .footer-slogan { font-size: 0.85rem; letter-spacing: 0.12em; }
}

/* ============================================
   NEW SECTIONS - Brand Story, Cultivation, Pricing, Images
   ============================================ */

/* === Brand Story Section === */
.section-brand-story {
  position: relative;
  overflow: hidden;
}

.story-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.story-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.story-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
    rgba(26, 51, 41, 0.85) 0%,
    rgba(45, 74, 62, 0.7) 50%,
    rgba(26, 51, 41, 0.85) 100%);
}

.section-brand-story > .section-title,
.section-brand-story > .gold-divider,
.section-brand-story > .brand-story-content {
  position: relative;
  z-index: 1;
}

.brand-story-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.brand-story-content p {
  text-align: left;
  margin-bottom: 1.5rem;
  line-height: 2;
  color: #d8d0c0;
}

.story-chapter-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.3rem;
  color: #c9a96e;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  text-align: left;
}

.story-highlight {
  text-align: center !important;
  color: #c9a96e !important;
  font-family: 'Noto Serif SC', serif;
  font-size: 1.05rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  margin: 2rem 0 !important;
}

.story-meaning-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.story-meaning-char {
  font-family: 'Noto Serif SC', serif;
  font-size: 2rem;
  color: #c9a96e;
  min-width: 3rem;
  text-align: center;
  line-height: 1;
}

.story-meaning-text {
  color: #d8d0c0;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* === Fade-in line animation === */
.fade-in-line {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* === Transition Image Block === */
.transition-image-block {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.transition-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.transition-image-block:hover .transition-image {
  transform: scale(1.03);
}

.transition-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 51, 41, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.transition-text {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.3rem;
  color: #c9a96e;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* === Cultivation System (Ten Stages) === */
.cultivation-system {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.cultivation-intro {
  text-align: center;
  color: #a8b8a0;
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.1em;
}

.cultivation-phases {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.cultivation-phase {
  background: rgba(201, 169, 110, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.4s ease;
}

.cultivation-phase:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: rgba(201, 169, 110, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.phase-label {
  display: inline-block;
  font-family: 'Noto Serif SC', serif;
  font-size: 1.1rem;
  color: #c9a96e;
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 0.3em 1em;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.15em;
}

.phase-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
}

.phase-steps.four-col {
  grid-template-columns: repeat(4, 1fr);
}

.phase-step {
  text-align: center;
  padding: 1rem;
}

.step-num {
  display: block;
  font-family: 'Noto Serif SC', serif;
  font-size: 1.5rem;
  font-weight: 400 !important;
  color: #c9a96e;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.step-name {
  display: block;
  font-family: 'Noto Serif SC', serif;
  font-size: 1.15rem;
  font-weight: 400 !important;
  color: #f5f0e8;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.phase-step p {
  font-size: 0.85rem;
  font-weight: 400 !important;
  color: #a8b8a0;
  line-height: 1.6;
  white-space: normal;
  word-wrap: break-word;
  overflow: visible;
  max-width: 100%;
}

/* === Pricing Table === */
.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.pricing-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(201, 169, 110, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.pricing-row:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: rgba(201, 169, 110, 0.25);
  transform: translateX(4px);
}

.pricing-tier {
  font-family: 'Noto Serif SC', serif;
  font-size: 1rem;
  color: #c9a96e;
  min-width: 80px;
  letter-spacing: 0.05em;
}

.pricing-desc {
  flex: 1;
  font-size: 0.85rem;
  color: #a8b8a0;
}

.pricing-price {
  font-family: 'Noto Serif SC', serif;
  font-size: 1rem;
  color: #f5f0e8;
  white-space: nowrap;
}

/* === Scene Section Title === */
.scene-section-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #c9a96e;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* === Scene Image Block === */
.scene-image-block {
  position: relative;
  margin-top: 2.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.scene-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.scene-image-block:hover .scene-image {
  transform: scale(1.03);
}

.scene-image-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem 2rem;
  background: rgba(26, 51, 41, 0.75);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 4px;
  font-family: 'Noto Serif SC', serif;
  font-size: 1.3rem;
  color: #c9a96e;
  text-align: center;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

/* === Responsive for new sections === */
@media (max-width: 768px) {
  .brand-story-content { padding: 0 0.5rem; }
  .story-chapter-title { font-size: 1.1rem; }
  .story-meaning-row { flex-direction: column; gap: 0.3rem; text-align: center; }
  .story-meaning-char { font-size: 1.6rem; }

  .transition-image { height: 200px; }
  .transition-text { font-size: 1rem; letter-spacing: 0.1em; }

  .phase-steps { grid-template-columns: 1fr; gap: 1rem; }
  .cultivation-phase { padding: 1.5rem; }

  .pricing-row { flex-direction: column; align-items: flex-start; gap: 0.4rem; padding: 1rem; }
  .pricing-tier { min-width: auto; }
  .pricing-price { align-self: flex-end; }

  .scene-image { height: 180px; }
}

@media (max-width: 480px) {
  .transition-image { height: 160px; }
  .scene-image { height: 150px; }
  .phase-step { padding: 0.5rem; }
}

/* === Contact Section Enhanced === */
.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.contact-icon {
  width: 28px;
  height: 28px;
  color: #c9a96e;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  color: #a8b8a0;
  letter-spacing: 0.15em;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.contact-value {
  display: block;
  font-size: 1rem;
  color: #f5f0e8;
  line-height: 1.6;
}

a.contact-value {
  color: #c9a96e;
  text-decoration: none;
  transition: color 0.3s ease;
}

a.contact-value:hover {
  color: #d4b87a;
}

.wechat-qr-img {
  display: block;
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin-top: 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wechat-qr-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.2);
}

/* === QR Code Grid === */
.qr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* 自媒体矩阵标题 */
.media-matrix-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 30px 0 20px 0;
}
.media-text {
  color: #a8b8a0;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
}

.media-matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 30px auto 0;
}
.media-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.media-card img {
  width: 100%;
  max-width: 160px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  padding: 8px;
  object-fit: cover;
}
.media-card.placeholder img {
  border: 2px dashed rgba(201,169,110,0.3);
  background: transparent;
}
.media-card .media-label {
  color: rgba(201,169,110,0.7);
  font-size: 14px;
  letter-spacing: 1px;
}

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

.qr-placeholder {
  width: 120px;
  height: 120px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  background: rgba(26, 51, 41, 0.5);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.qr-placeholder:hover {
  border-color: rgba(201, 169, 110, 0.6);
  box-shadow: 0 0 15px rgba(201, 169, 110, 0.15);
}

.qr-placeholder svg {
  width: 48px;
  height: 48px;
  color: #a8b8a0;
  opacity: 0.5;
}

.qr-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  margin: 0 auto 0.8rem;
  display: block;
  background: #fff;
  padding: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.25);
}

.qr-label {
  font-size: 0.85rem;
  color: #a8b8a0;
  letter-spacing: 0.1em;
}

/* === Footer Enhanced === */
.footer-icp {
  font-size: 0.75rem;
  color: #a8b8a0;
  margin-top: 0.5rem;
  opacity: 0.5;
}
.footer-police {
  color: inherit;
  text-decoration: none;
  margin-left: 0.75rem;
}
.footer-police:hover {
  color: #d4b87a;
  opacity: 0.9;
}

/* === Responsive for new elements === */
@media (max-width: 768px) {
  .qr-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 300px;
  }
  .qr-placeholder {
    width: 100px;
    height: 100px;
  }
  .contact-item {
    gap: 0.8rem;
  }
  .phase-steps.four-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .media-matrix-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .media-card img {
    max-width: 120px;
    height: auto;
  }
}

/* ============================================
   31. Simple List (To C Audience)
   ============================================ */
.simple-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}

.simple-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.5rem;
  color: rgba(245, 240, 232, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.simple-list li:last-child {
  border-bottom: none;
}

.simple-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.7;
}

/* ============================================
   32. Audience Categories Cards
   ============================================ */
.audience-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.audience-categories.audience-tob {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.audience-card {
  background: rgba(45, 74, 62, 0.35);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(201, 169, 110, 0.1);
}

.audience-card:hover::before {
  opacity: 1;
}

.audience-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: var(--gold);
  opacity: 0.8;
}

.audience-card-icon svg {
  width: 100%;
  height: 100%;
}

.audience-card h5 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: var(--color-gold);
  margin-bottom: 0.8rem;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.audience-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audience-card ul li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}

.audience-card ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.6;
}

.audience-tags {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Mobile responsive for audience cards */
@media (max-width: 768px) {
  .audience-categories {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .audience-card {
    padding: 1.2rem;
  }
}
