/* ========================================
   木兰茶故事 mulanteastory.cn
   唯美茶境风 v11.0
   设计理念：茶烟 · 暖琥珀 · 宣纸质感 · 有机流动
   核心风格：唯美 · 质感 · 动感 · 暖色系
   设计哲学：手工感 > 系统感，有机 > 机械，诗意 > 商务
   ======================================== */

/* ========================================
   1. CSS Variables & Design Tokens
   ======================================== */
:root {
  --cream: #f7f1e8;
  --cream-warm: #ede5d8;
  --cream-deep: #dfd3c2;
  --cream-rose: #e8ddd0;
  --tea-deep: #251809;
  --tea-ink: #382818;
  --tea-warm: #5a4230;
  --tea-soft: #7a6352;
  --mist: #9e9486;
  --mist-light: #c2b9ab;
  --gold: #a88540;
  --gold-light: #c4a058;
  --gold-faint: rgba(168, 133, 64, .08);
  --amber: #b07338;
  --amber-light: #c88a48;
  --amber-faint: rgba(176, 115, 56, .05);
  --caramel: #935f24;
  --honey: #d4ae68;
  --white: #fdfaf5;
  --accent: #8b6b4d;

  --font-heading: "Noto Serif SC", Georgia, "Times New Roman", serif;
  --font-body: "Noto Sans SC", -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;

  --hero-title: clamp(28px, 4vw, 52px);
  --section-title: clamp(26px, 3.8vw, 42px);

  --max-width: 1200px;
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 14px;
  --radius-full: 9999px;

  --transition-fast: .2s ease;
  --transition-base: .35s cubic-bezier(.4,0,.2,1);
  --transition-slow: .6s cubic-bezier(.4,0,.2,1);
  --ease-out-expo: cubic-bezier(.16,1,.3,1);
  --ease-warm: cubic-bezier(.23, 1, .32, 1);
  --ease-organic: cubic-bezier(.4, 0, .2, 1);

  --shadow-sm: 0 1px 2px rgba(37,24,9,.03), 0 1px 4px rgba(176,115,56,.02);
  --shadow-md: 0 2px 8px rgba(37,24,9,.04), 0 4px 16px rgba(176,115,56,.03);
  --shadow-lg: 0 8px 32px rgba(37,24,9,.06), 0 2px 8px rgba(176,115,56,.04);
  --shadow-card: 0 1px 3px rgba(37,24,9,.03), 0 2px 8px rgba(176,115,56,.02), 0 0 0 1px rgba(223,211,194,.3);
  --shadow-card-hover: 0 8px 28px rgba(37,24,9,.06), 0 2px 8px rgba(176,115,56,.04), 0 0 0 1px rgba(176,115,56,.08);
  --shadow-warm: 0 3px 20px rgba(176, 115, 56, .06);

  --color-primary: var(--amber);
  --color-primary-dark: var(--tea-deep);
  --color-primary-light: var(--amber-light);
  --color-gold: var(--gold);
  --color-gold-light: var(--cream-warm);
  --color-gold-dark: var(--accent);
  --color-gold-bright: var(--gold-light);
  --color-accent: var(--accent);
  --color-accent-light: #a08460;
  --color-dark: var(--tea-ink);
  --color-dark-soft: var(--tea-warm);
  --color-gray: var(--mist);
  --color-gray-light: var(--cream);
  --color-white: var(--white);
  --color-border: var(--cream-deep);

  --gradient-hero: #1a1008;
  --gradient-gold: linear-gradient(135deg, var(--amber) 0%, var(--caramel) 100%);
  --gradient-warm: linear-gradient(135deg, var(--amber-light) 0%, var(--gold) 50%, var(--caramel) 100%);
  --gradient-card: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  --gradient-dark-section: linear-gradient(180deg, #251809 0%, #140d06 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #a08460 100%);
  --gradient-tea: linear-gradient(135deg, var(--tea-deep) 0%, var(--tea-warm) 50%, var(--amber) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.01) 100%);
  --gradient-warm-bg: linear-gradient(180deg, #f7f1e8 0%, #ede5d8 40%, #e5daca 100%);

  --glow-warm: 0 0 30px rgba(176,115,56,.06);
  --glow-warm-soft: 0 0 50px rgba(176,115,56,.04);
  --glow-amber: 0 0 24px rgba(176,115,56,.08);

  --font-display: var(--font-heading);
  --font-mono: "SF Mono", "Fira Code", Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--tea-ink);
  line-height: 1.8;
  background: var(--cream);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(176,115,56,.02) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(168,133,64,.015) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(147,95,36,.01) 0%, transparent 45%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(176,115,56,.07) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 100%, rgba(168,133,64,.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(212,174,104,.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: .06;
  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='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--amber); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--caramel); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.4;
  font-weight: 600;
  color: var(--tea-ink);
  letter-spacing: .03em;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.2rem; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); margin-bottom: .7rem; }
h4 { font-size: 1.15rem; margin-bottom: .5rem; }
p { margin-bottom: 1rem; color: var(--tea-warm); line-height: 1.85; }
ul, ol { padding-left: 1.6rem; margin-bottom: 1rem; }
li { margin-bottom: .4rem; }

::selection {
  background: rgba(176,115,56,.12);
  color: var(--tea-ink);
}

/* ========================================
   3. Layout System
   ======================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-gray {
  background: var(--cream-warm);
  position: relative;
}

.section-gray::before {
  content: '';
  position: absolute;
  top: -1px; left: 5%; right: 5%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(176,115,56,.06) 15%,
    rgba(176,115,56,.12) 50%,
    rgba(176,115,56,.06) 85%,
    transparent 100%
  );
  border-radius: 1px;
}

.section-dark {
  background: var(--gradient-dark-section);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-dark > .container > .section-title p { color: rgba(255,255,255,.85); }
.section-dark h1,
.section-dark > .container > .section-title h2 { color: var(--honey); }
.section-dark .section-label { color: var(--amber-light); opacity: 1; }

/* Light cards inside section-dark - ensure dark text on light background */
.section-dark .pillar,
.section-dark .business-card,
.section-dark .quote-card { background: var(--white); }

.section-dark .pillar h3,
.section-dark .business-card h3,
.section-dark .business-card-title { color: var(--tea-ink); }

.section-dark .pillar p,
.section-dark .pillar strong,
.section-dark .business-card p,
.section-dark .business-card-desc,
.section-dark .quote-text,
.section-dark .quote-author { color: var(--tea-warm); }

.section-dark .pillar-icon,
.section-dark .card-icon { color: var(--amber); }

/* Generic cards in section-dark */
.section-dark .card {
  background: var(--white);
  border-color: rgba(223,211,194,.5);
}

.section-dark .card h3,
.section-dark .card .card-title {
  color: var(--tea-ink);
}

.section-dark .card p,
.section-dark .card .card-desc {
  color: var(--tea-warm);
}

.section-dark .card .card-price {
  color: var(--amber);
}

.section-dark .card .tag {
  background: var(--cream-warm);
  color: var(--tea-warm);
  border-color: var(--cream-deep);
}

.section-title {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
}

.section-title .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--amber-light);
  margin-bottom: 18px;
  font-family: var(--font-body);
}

.section-title .section-label::before,
.section-title .section-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-light));
  opacity: .4;
}

.section-title .section-label::after {
  background: linear-gradient(90deg, var(--amber-light), transparent);
}

.section-title h2 {
  border: none;
  display: inline-block;
  position: relative;
  letter-spacing: .06em;
  font-size: var(--section-title);
  font-weight: 600;
}

.section-title h2::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--amber);
  border-radius: 50%;
  margin: 0 auto 16px;
  opacity: .25;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--caramel));
  margin: 18px auto 0;
  border-radius: 1px;
  opacity: .5;
  position: relative;
}

.section-title p {
  margin-top: 22px;
  font-size: 1rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  color: var(--mist);
  line-height: 1.85;
}

.section-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--amber);
  margin-bottom: 16px;
  font-family: var(--font-body);
  position: relative;
  opacity: .65;
}

.section-tag::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--amber);
  margin: 10px auto 0;
  opacity: .35;
}

/* ========================================
   4. Header & Navigation
   ======================================== */
.header {
  background: rgba(247, 241, 232, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all .4s var(--ease-warm);
}

.header.scrolled {
  box-shadow: 0 1px 24px rgba(37,24,9,.05);
  background: rgba(247, 241, 232, .97);
  border-bottom: 1px solid rgba(223,211,194,.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  transition: transform .3s var(--ease-warm);
}

.logo:hover {
  opacity: 1;
}

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

.logo-icon {
  height: 40px;
  width: auto;
  transition: var(--transition-base);
  filter: brightness(0) saturate(0);
  opacity: .85;
}

.logo-icon-r {
  position: absolute;
  top: -8px;
  right: -10px;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  color: var(--amber);
  background: var(--cream);
  border-radius: 50%;
  width: 13px;
  height: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  border: 1px solid var(--cream-deep);
}

.logo:hover .logo-icon {
  opacity: 1;
}

.logo:hover .logo-icon-r {
  color: var(--caramel);
  border-color: var(--amber);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.25;
}

.logo-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--tea-ink);
  letter-spacing: 3px;
  white-space: nowrap;
  transition: color .3s ease;
  font-family: var(--font-heading);
}

.logo-subtitle {
  font-size: 10px;
  font-weight: 400;
  color: var(--mist);
  letter-spacing: 2.5px;
  font-family: "Segoe UI", "PingFang SC", sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .3s ease;
}

.logo:hover .logo-title { color: var(--tea-deep); }
.logo:hover .logo-subtitle { color: var(--amber); }

.logo-r {
  font-size: .5em;
  font-weight: 700;
  vertical-align: super;
  line-height: 0;
  margin-left: 1px;
  color: var(--amber);
  letter-spacing: 0;
}

.logo:hover .logo-r { color: var(--caramel); }

@media (max-width: 768px) {
  .logo-icon { height: 32px; }
  .logo-icon-r { width: 11px; height: 11px; font-size: 6.5px; top: -5px; right: -7px; }
  .logo-title { font-size: 15px; letter-spacing: 2px; }
  .logo-subtitle { font-size: 8px; letter-spacing: 1.5px; }
  .logo-text { gap: 0; }
}

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

.nav > .nav-item {
  position: relative;
}

.nav > .nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--tea-warm);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  letter-spacing: .02em;
  position: relative;
}

.nav > .nav-item > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--amber);
  transition: width .3s var(--ease-warm), left .3s var(--ease-warm);
  border-radius: 1px;
  opacity: .6;
}

.nav > .nav-item > a:hover,
.nav > .nav-item.active > a {
  color: var(--tea-ink);
}

.nav > .nav-item > a:hover::after,
.nav > .nav-item.active > a::after {
  width: 50%;
  left: 25%;
  background: var(--amber);
  box-shadow: 0 0 6px rgba(176,115,56,.2);
}

.nav-item.active > a {
  color: var(--tea-ink);
}

.nav-arrow {
  font-size: .6rem;
  transition: transform .25s ease;
  opacity: .5;
  color: var(--mist);
}

.nav-item:hover .nav-arrow {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--amber);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-deep);
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
  padding: 8px;
  z-index: 100;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--white);
  border-top: 1px solid var(--cream-deep);
  border-left: 1px solid var(--cream-deep);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: .88rem;
  color: var(--tea-warm);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  font-weight: 450;
}

.dropdown-menu a:hover {
  background: var(--cream-warm);
  color: var(--tea-ink);
  padding-left: 20px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav-toggle:hover {
  background: var(--cream-warm);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tea-ink);
  transition: var(--transition-base);
  border-radius: 1px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   5. Hero Section
   ======================================== */
.hero {
  min-height: 72vh;
  background: #1a1008;
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  opacity: .5;
  pointer-events: none;
}

/* ========================================
   23. Case Cards & Missing Components
   ======================================== */
.case-card {
  background: var(--white);
  border: 1px solid rgba(223,211,194,.4);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-card);
  transition: all .5s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}

.case-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(176,115,56,.04) 0%, transparent 100%);
  opacity: 0;
  transition: height .6s cubic-bezier(.16,1,.3,1), opacity .4s ease;
}

.case-card:hover {
  box-shadow:
    0 8px 28px rgba(37,24,9,.06),
    0 0 0 1px rgba(176,115,56,.1),
    0 0 32px rgba(176,115,56,.03);
  border-color: rgba(176,115,56,.15);
}

.case-card:hover::before {
  height: 100%;
  opacity: 1;
}

.case-type {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(176,115,56,.06);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(176,115,56,.08);
}

.case-card h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--tea-deep);
  margin-bottom: 20px;
  line-height: 1.3;
}

.case-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--tea-ink);
  margin-top: 28px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(223,211,194,.25);
}

.case-info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: .9rem;
}

.case-info-table th {
  text-align: left;
  padding: 10px 12px;
  color: var(--tea-soft);
  font-weight: 500;
  font-size: .82rem;
  width: 120px;
  vertical-align: top;
  background: rgba(176,115,56,.02);
  border-radius: 4px;
}

.case-info-table td {
  padding: 10px 12px;
  color: var(--tea-ink);
  line-height: 1.6;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-list li {
  padding: 12px 0 12px 28px;
  position: relative;
  color: var(--tea-warm);
  line-height: 1.7;
  font-size: .92rem;
  border-left: 2px solid rgba(176,115,56,.08);
  margin-left: 8px;
}

.step-list li::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 18px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(176,115,56,.1);
}

.step-list li strong {
  color: var(--tea-deep);
  font-weight: 600;
}

.client-quote {
  background: rgba(176,115,56,.03);
  border-left: 3px solid var(--amber);
  padding: 20px 24px;
  margin: 16px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
}

.client-quote p {
  color: var(--tea-warm);
  line-height: 1.8;
  font-size: .95rem;
  margin: 0 0 10px;
}

.client-quote cite {
  display: block;
  text-align: right;
  color: var(--mist);
  font-size: .82rem;
  font-style: normal;
  font-weight: 500;
}

/* ========================================
   Space Detail (club/spaces.html)
   ======================================== */
.space-detail {
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(176,115,56,.1);
}

.space-detail:last-of-type {
  border-bottom: none;
}

.space-detail h2 {
  font-size: 1.5rem;
  color: var(--tea-ink);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.space-detail h3 {
  font-size: 1.15rem;
  color: var(--tea-ink);
  margin: 24px 0 12px;
}

.space-detail p {
  color: var(--tea-warm);
  line-height: 1.85;
  margin-bottom: 12px;
}

.space-detail p strong {
  color: var(--tea-ink);
  font-weight: 600;
}

/* Floor Badge */
.floor-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--tea-deep);
  color: var(--honey);
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.floor-badge-highlight {
  background: var(--amber);
  color: var(--white);
}

.floor-badge-special {
  background: linear-gradient(135deg, var(--amber), var(--caramel));
  color: var(--white);
}

/* Space Specs Table */
.space-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: .92rem;
}

.space-specs-table th,
.space-specs-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--cream-deep);
}

.space-specs-table th {
  width: 120px;
  color: var(--tea-soft);
  font-weight: 500;
  background: var(--cream-warm);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.space-specs-table td {
  color: var(--tea-warm);
}

.space-specs-table td strong {
  color: var(--tea-ink);
}

.space-specs-table tr:hover th,
.space-specs-table tr:hover td {
  background: rgba(176,115,56,.03);
}

/* Check List */
.check-list {
  list-style: none;
  padding-left: 0;
  margin: 16px 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--tea-warm);
  line-height: 1.75;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}

.check-list li strong {
  color: var(--tea-ink);
}

/* Tea Garden / Custom Service Cards (wholesale pages) */
.card-simple {
  background: var(--white);
  border: 1px solid rgba(223,211,194,.35);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all .5s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}

.card-simple::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(176,115,56,.04) 0%, transparent 100%);
  opacity: 0;
  transition: height .5s ease, opacity .3s ease;
}

.card-simple:hover {
  box-shadow:
    0 8px 28px rgba(37,24,9,.05),
    0 0 0 1px rgba(176,115,56,.1),
    0 0 24px rgba(176,115,56,.02);
  border-color: rgba(176,115,56,.12);
}

.card-simple:hover::before {
  height: 100%;
  opacity: 1;
}

.card-simple h3,
.card-simple .card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--tea-deep);
  margin: 16px 0 8px;
}

.card-simple p,
.card-simple .card-desc {
  color: var(--tea-soft);
  font-size: .88rem;
  line-height: 1.6;
  margin: 0;
}

/* OEM / Service feature cards */
.service-feature {
  background: var(--white);
  border: 1px solid rgba(223,211,194,.35);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  transition: all .5s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}

.service-feature::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(176,115,56,.04) 0%, transparent 100%);
  opacity: 0;
  transition: height .5s ease, opacity .3s ease;
}

.service-feature:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(37,24,9,.05),
    0 0 0 1px rgba(176,115,56,.1),
    0 0 24px rgba(176,115,56,.02);
  border-color: rgba(176,115,56,.12);
}

.service-feature:hover::before {
  height: 100%;
  opacity: 1;
}

.service-feature h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--tea-deep);
  margin: 14px 0 10px;
}

.service-feature p {
  color: var(--tea-soft);
  font-size: .88rem;
  line-height: 1.7;
  margin: 0;
}

/* Science/Tech cards */
.tech-card {
  background: var(--white);
  border: 1px solid rgba(223,211,194,.35);
  border-radius: var(--radius-lg);
  padding: 32px 28px 40px;
  box-shadow: var(--shadow-card);
  transition: all .5s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(176,115,56,.04) 0%, transparent 100%);
  opacity: 0;
  transition: height .5s ease, opacity .3s ease;
}

.tech-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(37,24,9,.05),
    0 0 0 1px rgba(176,115,56,.1),
    0 0 24px rgba(176,115,56,.02);
  border-color: rgba(176,115,56,.12);
}

.tech-card:hover::before {
  height: 100%;
  opacity: 1;
}

.tech-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--tea-deep);
  margin: 16px 0 12px;
}

.tech-card p {
  color: var(--tea-soft);
  font-size: .9rem;
  line-height: 1.75;
  margin: 0;
}

/* FAQ items in dark section */
.faq-item-dark {
  background: var(--white);
  border: 1px solid rgba(223,211,194,.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: var(--shadow-sm);
}

.faq-item-dark:hover {
  border-color: rgba(176,115,56,.2);
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-md);
}

.faq-item-dark .faq-q {
  font-weight: 600;
  color: var(--tea-deep);
  font-size: .95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item-dark .faq-a {
  color: var(--tea-warm);
  font-size: .9rem;
  line-height: 1.7;
  margin-top: 12px;
  display: none;
}

.faq-item-dark.active .faq-a {
  display: block;
}

.faq-item-dark.active {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px rgba(176,115,56,.08), 0 4px 16px rgba(176,115,56,.04);
}

.hero-canvas canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(26,16,8,.8) 0%, transparent 60%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  background: rgba(176,115,56,.3);
  border-radius: 50%;
  animation: particleFloat linear infinite;
  filter: blur(.5px);
}

.hero-particle.size-s { width: 2px; height: 2px; }
.hero-particle.size-m { width: 3px; height: 3px; }
.hero-particle.size-l { width: 5px; height: 5px; filter: blur(1px); }

@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: .6; transform: translateY(90vh) scale(1); }
  50% { opacity: .3; }
  90% { opacity: .1; }
  100% { transform: translateY(-10vh) scale(.3); opacity: 0; }
}

/* ========================================
   Hero - Tea Culture Theme (冲击力版)
   ======================================== */

.hero {
  position: relative;
  overflow: hidden;
}

/* 金色光束效果 - 顶部照射 */
.hero-light-beam {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 150%;
  background: linear-gradient(
    180deg,
    rgba(232,196,124,.15) 0%,
    rgba(232,196,124,.08) 30%,
    rgba(232,196,124,.03) 60%,
    transparent 100%
  );
  clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
  animation: lightBeamPulse 4s ease-in-out infinite;
  pointer-events: none;
}

.hero-light-beam::before,
.hero-light-beam::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  clip-path: inherit;
}

.hero-light-beam::before {
  left: -60%;
  opacity: 0.5;
  animation-delay: 1s;
}

.hero-light-beam::after {
  left: 60%;
  opacity: 0.5;
  animation-delay: 2s;
}

@keyframes lightBeamPulse {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) scaleY(1); }
  50% { opacity: 1; transform: translateX(-50%) scaleY(1.1); }
}

/* 茶叶飘落 - 冲击力 */
.hero-tea-leaf {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero-tea-leaf span {
  position: absolute;
  width: 15px;
  height: 8px;
  background: linear-gradient(135deg, 
    rgba(139,90,43,.6) 0%,
    rgba(176,115,56,.4) 50%,
    rgba(139,90,43,.3) 100%
  );
  border-radius: 50% 0 50% 0;
  animation: teaLeafFall linear infinite;
  box-shadow: 0 0 10px rgba(176,115,56,.3);
}

.hero-tea-leaf span:nth-child(1) { left: 5%; animation-duration: 8s; animation-delay: 0s; width: 12px; height: 6px; }
.hero-tea-leaf span:nth-child(2) { left: 15%; animation-duration: 10s; animation-delay: 1s; width: 18px; height: 10px; }
.hero-tea-leaf span:nth-child(3) { left: 25%; animation-duration: 9s; animation-delay: 0.5s; }
.hero-tea-leaf span:nth-child(4) { left: 35%; animation-duration: 11s; animation-delay: 2s; width: 14px; height: 7px; }
.hero-tea-leaf span:nth-child(5) { left: 45%; animation-duration: 8s; animation-delay: 1.5s; width: 16px; height: 9px; }
.hero-tea-leaf span:nth-child(6) { left: 55%; animation-duration: 10s; animation-delay: 0.8s; }
.hero-tea-leaf span:nth-child(7) { left: 65%; animation-duration: 9s; animation-delay: 2.5s; width: 13px; height: 7px; }
.hero-tea-leaf span:nth-child(8) { left: 75%; animation-duration: 11s; animation-delay: 1.2s; width: 17px; height: 9px; }
.hero-tea-leaf span:nth-child(9) { left: 85%; animation-duration: 8s; animation-delay: 0.3s; }
.hero-tea-leaf span:nth-child(10) { left: 95%; animation-duration: 10s; animation-delay: 1.8s; width: 15px; height: 8px; }

@keyframes teaLeafFall {
  0% {
    top: -5%;
    transform: translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    top: 105%;
    transform: translateX(100px) rotate(720deg);
    opacity: 0;
  }
}

/* 水墨晕染大效果 */
.hero-ink-large {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: inkFlow 20s ease-in-out infinite;
}

.hero-ink-large:nth-child(1) {
  top: 10%;
  left: -10%;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(60,40,20,.25) 0%, transparent 70%);
  animation-delay: 0s;
}

.hero-ink-large:nth-child(2) {
  bottom: 20%;
  right: -15%;
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(176,115,56,.2) 0%, transparent 70%);
  animation-delay: -10s;
}

@keyframes inkFlow {
  0%, 100% { 
    transform: translate(0, 0) scale(1); 
    opacity: 0.6;
  }
  25% { 
    transform: translate(30px, -20px) scale(1.1); 
    opacity: 0.8;
  }
  50% { 
    transform: translate(-20px, 30px) scale(0.95); 
    opacity: 0.7;
  }
  75% { 
    transform: translate(10px, 10px) scale(1.05); 
    opacity: 0.9;
  }
}

/* 山水剪影 - 更强对比 */
.hero-bg-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  pointer-events: none;
}

/* 远山 - 大对比 */
.hero-bg-mountains::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background: 
    /* 山峰1 - 大远山 */
    linear-gradient(130deg, transparent 30%, rgba(40,25,12,.3) 30%, rgba(40,25,12,.3) 35%, transparent 35%),
    /* 山峰2 - 中山 */
    linear-gradient(125deg, transparent 20%, rgba(60,40,20,.35) 20%, rgba(60,40,20,.35) 28%, transparent 28%),
    /* 山峰3 - 小远山 */
    linear-gradient(140deg, transparent 45%, rgba(35,22,10,.25) 45%, rgba(35,22,10,.25) 52%, transparent 52%);
  animation: mountainWave 25s ease-in-out infinite;
}

/* 近山 - 最强对比 */
.hero-bg-mountains::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 70%;
  background: linear-gradient(140deg, 
    transparent 35%, 
    rgba(30,20,10,.4) 35%, 
    rgba(30,20,10,.4) 50%, 
    transparent 50%
  );
  animation: mountainWave 18s ease-in-out infinite reverse;
}

@keyframes mountainWave {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3%); }
}

/* 金色光线分割 */
.hero-divider {
  position: absolute;
  bottom: 15%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(232,196,124,.3) 20%,
    rgba(232,196,124,.6) 50%,
    rgba(232,196,124,.3) 80%,
    transparent 100%
  );
  animation: dividerGlow 3s ease-in-out infinite;
}

@keyframes dividerGlow {
  0%, 100% { opacity: 0.4; transform: scaleX(0.8); }
  50% { opacity: 1; transform: scaleX(1); }
}

/* 底部光芒 */
.hero-glow-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, 
    rgba(176,115,56,.2) 0%,
    rgba(176,115,56,.1) 40%,
    transparent 100%
  );
  animation: glowBottom 5s ease-in-out infinite;
}

@keyframes glowBottom {
  0%, 100% { opacity: 0.6; height: 150px; }
  50% { opacity: 1; height: 180px; }
}

/* 茶叶粒子爆发 */
.hero-burst {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  pointer-events: none;
}

.hero-burst::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(232,196,124,.6) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: burstPulse 3s ease-out infinite;
}

@keyframes burstPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(30);
    opacity: 0;
  }
}

.hero-bg-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-glow::before {
  content: '';
  position: absolute;
  top: -25%; left: 15%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(176,115,56,.04);
  filter: blur(80px);
}

.hero-bg-glow::after {
  content: '';
  position: absolute;
  bottom: -20%; right: 5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(168,133,64,.03);
  filter: blur(70px);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 10%; right: 10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(176,115,56,.03);
  filter: blur(100px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: rgba(200,138,72,.6);
  margin-bottom: 40px;
  animation: fadeInDown 1s var(--ease-warm);
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,115,56,.3));
}

.hero-eyebrow-line:last-child {
  background: linear-gradient(90deg, rgba(176,115,56,.3), transparent);
}

.hero-eyebrow-text {
  letter-spacing: 3px;
}

/* ========================================
   Warm Dynamic Effects - Tea Spirit
   ======================================== */

/* Floating tea leaves */
@keyframes teaLeafFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(3deg); }
  50% { transform: translateY(-4px) rotate(-2deg); }
  75% { transform: translateY(-12px) rotate(1deg); }
}

/* Gentle pulse glow */
@keyframes warmPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

/* Soft shimmer */
@keyframes softShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Tea steam wisps */
@keyframes steamWisp {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  15% { opacity: 0.6; }
  50% { transform: translateY(-60px) translateX(10px) scale(1.2); opacity: 0.3; }
  100% { transform: translateY(-120px) translateX(-5px) scale(0.8); opacity: 0; }
}

/* Gentle sway */
@keyframes gentleSway {
  0%, 100% { transform: rotate(-1deg); }
  50% { transform: rotate(1deg); }
}

/* Warm breathe */
@keyframes warmBreathe {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

/* Hero title - static */
.hero-title .line {
  display: block;
}

/* Gold text - static */
.hero-title .gold {
  color: var(--honey);
}

/* Warm glow orbs - static */
.warm-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

/* Section transition warmth */
.section {
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(176,115,56,.02) 0%, transparent 50%);
  pointer-events: none;
  animation: warmBreathe 15s ease-in-out infinite;
}

/* Card hover warmth effects */
.business-card,
.card,
.brand-chip,
.pillar {
  transition: all 0.5s cubic-bezier(.16, 1, .3, 1);
}

.business-card:hover,
.card:hover,
.brand-chip:hover,
.pillar:hover {
  box-shadow: 
    0 12px 40px rgba(37, 24, 9, .08),
    0 0 0 1px rgba(176, 115, 56, .1),
    0 0 60px rgba(176, 115, 56, .04);
}

/* Button warmth pulse */
.hero-cta-primary {
  position: relative;
  overflow: hidden;
}

.hero-cta-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.hero-cta-primary:hover::after {
  transform: translateX(100%);
}

/* Scroll indicator warmth */
.hero-scroll {
  animation: fadeInUp 1s var(--ease-warm) 1.2s both;
}

.hero-scroll-line {
  animation: scrollLine 2s ease-in-out infinite;
}

/* Navigation warmth */
.nav-item a {
  position: relative;
  transition: color 0.3s ease;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width 0.4s cubic-bezier(.16, 1, .3, 1);
}

.nav-item a:hover::after {
  width: 100%;
}

/* Stagger reveal enhancement */
.stagger-reveal > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(.16, 1, .3, 1);
}

.stagger-reveal.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Data bar warmth glow */
.data-bar {
  position: relative;
}

.data-bar::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(176,115,56,.1), transparent, rgba(168,133,64,.1));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.data-bar:hover::after {
  opacity: 1;
}

/* Quote card warmth */
.quote-card {
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 6rem;
  color: rgba(176,115,56,.06);
  font-family: var(--font-heading);
  line-height: 1;
  animation: gentleSway 10s ease-in-out infinite;
}

/* Image hover warmth */
.gallery-item img,
.business-card-icon {
  transition: all 0.6s cubic-bezier(.16, 1, .3, 1);
}

.gallery-item:hover img {
  filter: brightness(1.05) saturate(1.1);
}

/* FAQ warmth */
.faq-question {
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(176,115,56,.02);
}

/* Footer warmth glow */
.footer {
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,115,56,.2), transparent);
  animation: softShimmer 6s linear infinite;
  background-size: 200% auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(176,115,56,.06);
  border: 1px solid rgba(176,115,56,.12);
  border-radius: 8px;
  font-size: .82rem;
  color: var(--amber-light);
  letter-spacing: 2px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 1s var(--ease-warm);
}

.hero h1 {
  font-size: var(--hero-title);
  color: var(--honey);
  margin-bottom: 32px;
  border: none;
  letter-spacing: .08em;
  animation: fadeInUp 1s var(--ease-warm) .15s both;
  line-height: 1.3;
  font-family: var(--font-heading);
  font-weight: 400;
  text-shadow: 0 2px 30px rgba(232,196,124,.25), 0 0 60px rgba(232,196,124,.12);
}

.hero h1 span,
.hero h1 .text-gold-highlight {
  color: var(--honey);
}

.hero h1 .text-gold-highlight {
  color: var(--honey);
  position: relative;
}

.hero h1 .text-gold-highlight::after {
  content: attr(data-text);
  position: absolute;
  left: 0; top: 0;
  z-index: -1;
  color: var(--amber);
  filter: blur(24px);
  opacity: .2;
}

/* ========================================
   Hero Title - Static
   ======================================== */

.hero-title .line {
  display: block;
}

.hero-title .gold {
  color: var(--honey);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: 44px;
  line-height: 1.85;
  color: rgba(255,255,255,.9);
  font-weight: 400;
}

.hero-subtitle strong {
  color: var(--amber-light);
  font-weight: 500;
}

.hero-desc {
  font-size: clamp(.92rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 48px;
  line-height: 2;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  letter-spacing: .06em;
}

.hero-desc strong {
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  animation: fadeInUp 1s var(--ease-warm) .6s both;
}

.hero-cta-group .btn {
  min-width: 160px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  animation: fadeInUp 1s var(--ease-warm) .5s both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeInUp 1s var(--ease-warm) .8s both;
}

.hero-scroll span {
  font-size: .65rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,.25);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(176,115,56,.4), transparent);
  animation: scrollLine 3s ease-in-out infinite;
}

.hero-scroll-text {
  font-size: .65rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,.25);
}

@keyframes scrollLine {
  0% { opacity: .8; transform: scaleY(1); transform-origin: top; }
  50% { opacity: .2; transform: scaleY(.4); transform-origin: top; }
  100% { opacity: .8; transform: scaleY(1); transform-origin: top; }
}

/* ========================================
   5.5 Button System
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all .4s var(--ease-organic);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: .03em;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 2px 16px rgba(176,115,56,.12);
}

.btn-primary:hover {
  background: var(--amber-light);
  box-shadow:
    0 6px 28px rgba(176,115,56,.2),
    0 1px 3px rgba(176,115,56,.1),
    inset 0 1px 0 rgba(255,255,255,.15);
  color: var(--white);
}

.btn-primary:active {
  box-shadow: 0 1px 4px rgba(176,115,56,.1);
}

.btn-outline {
  background: transparent;
  color: var(--tea-warm);
  border: 1.5px solid var(--cream-deep);
}

.btn-outline:hover {
  background: rgba(176,115,56,.04);
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(176,115,56,.08);
}

.btn-outline:active {
  transform: translateY(1px);
}

.btn-gold {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 2px 16px rgba(176,115,56,.12);
  font-weight: 500;
}

.btn-gold:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow:
    0 6px 28px rgba(176,115,56,.2),
    0 1px 3px rgba(176,115,56,.1),
    inset 0 1px 0 rgba(255,255,255,.15);
  color: var(--white);
}

.btn-gold:active {
  transform: translateY(1px);
  box-shadow: 0 1px 4px rgba(176,115,56,.1);
}

.hero-cta {
  padding: 16px 36px;
  font-size: .92rem;
}

.hero-cta-primary {
  background: var(--amber);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-size: .92rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .4s var(--ease-organic);
  letter-spacing: 3px;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(176,115,56,.15);
  position: relative;
  overflow: hidden;
}

.hero-cta-primary:hover {
  background: var(--amber-light);
  box-shadow:
    0 6px 28px rgba(176,115,56,.2),
    0 1px 3px rgba(176,115,56,.1),
    inset 0 1px 0 rgba(255,255,255,.15);
  color: var(--white);
}

.hero-cta-primary:active {
  box-shadow: 0 2px 8px rgba(176,115,56,.12);
}

.hero-cta-primary svg {
  transition: transform .3s var(--ease-organic);
}

.hero-cta-primary:hover svg {
  transform: translateX(4px);
}

.hero-cta-outline {
  border: 1px solid rgba(176,115,56,.2);
  color: rgba(200,138,72,.7);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-size: .92rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .4s var(--ease-organic);
  letter-spacing: 3px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.hero-cta-outline:hover {
  border-color: rgba(176,115,56,.5);
  background: rgba(176,115,56,.08);
  color: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(176,115,56,.1);
}

.hero-cta-outline:active {
  transform: translateY(1px);
}

/* ========================================
   6. Card Components
   ======================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.cards-grid .business-card {
  padding: 36px 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(223,211,194,.5);
  transition: all .5s var(--ease-organic);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(176,115,56,.04) 0%, transparent 100%);
  opacity: 0;
  transition: height .6s var(--ease-organic), opacity .4s var(--ease-organic);
}

.card:hover {
  box-shadow:
    0 8px 28px rgba(37,24,9,.06),
    0 0 0 1px rgba(176,115,56,.1),
    0 0 32px rgba(176,115,56,.03);
  border-color: rgba(176,115,56,.15);
  background: linear-gradient(180deg, var(--white) 0%, rgba(176,115,56,.02) 100%);
}

.card:hover::before {
  height: 100%;
  opacity: 1;
  background: linear-gradient(to top, rgba(176,115,56,.06) 0%, transparent 100%);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  display: block;
}

.card-body {
  padding: 32px 28px;
}

.card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--tea-ink);
}

.card-body p {
  font-size: .93rem;
  color: var(--tea-warm);
  line-height: 1.75;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--cream-deep);
}

.card-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--amber);
  font-family: var(--font-heading);
}

.card-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--amber);
  transition: var(--transition-fast);
}

.card-link:hover {
  color: var(--caramel);
  gap: 4px;
}

.card-link::after { content: ' →'; }

.card-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.tag {
  background: var(--cream-warm);
  color: var(--tea-warm);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .3px;
  transition: var(--transition-fast);
  border: 1px solid var(--cream-deep);
}

.tag:hover {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
  box-shadow: 0 2px 8px rgba(176,115,56,.15);
  transform: translateY(-1px);
}

/* Business Cards */
.business-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: left;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(223,211,194,.5);
  transition: all .5s var(--ease-organic);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.business-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(176,115,56,.04) 0%, transparent 100%);
  transition: height .6s cubic-bezier(.16,1,.3,1);
}

.business-card::after {
  display: none;
}

.card-inner-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.business-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(37,24,9,.07),
    0 0 0 1px rgba(176,115,56,.12),
    0 0 40px rgba(176,115,56,.04);
  border-color: rgba(176,115,56,.2);
  background: linear-gradient(180deg, var(--white) 0%, rgba(176,115,56,.02) 100%);
}

.business-card:hover::before {
  height: 100%;
  background: linear-gradient(to top, rgba(176,115,56,.06) 0%, transparent 100%);
}

.business-card-num {
  position: absolute;
  top: 14px;
  left: 18px;
  font-size: 3rem;
  font-weight: 300;
  color: var(--cream-deep);
  line-height: 1;
  font-family: var(--font-heading);
  opacity: .3;
  transition: all .5s var(--ease-organic);
  pointer-events: none;
  user-select: none;
}

.business-card:hover .business-card-num {
  opacity: .1;
  color: var(--amber);
}

.business-card-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--cream-warm);
  color: var(--amber);
  font-size: .85rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: all .4s var(--ease-organic);
}

.business-card:hover .business-card-arrow {
  opacity: 1;
  transform: translateX(0);
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(176,115,56,.15);
}

.business-card .card-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
  transition: transform .4s var(--ease-organic);
  position: relative;
  z-index: 1;
}

.business-card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  color: var(--amber);
  position: relative;
  z-index: 1;
  transition: all .4s var(--ease-organic);
  background: rgba(176,115,56,.04);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid rgba(176,115,56,.06);
}

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

.business-card:hover .business-card-icon {
  transform: scale(1.05);
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
  box-shadow: 0 4px 16px rgba(176,115,56,.2);
}

.business-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--tea-ink);
  letter-spacing: .03em;
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
}

.business-card-desc {
  font-size: .9rem;
  color: var(--mist);
  margin-bottom: 20px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.business-card-meta {
  font-size: .85rem;
  color: var(--amber);
  font-weight: 500;
  letter-spacing: .5px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-deep);
}

.business-card:hover .card-icon {
  transform: scale(1.03);
}

.business-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--tea-ink);
  letter-spacing: .03em;
  position: relative;
  z-index: 1;
}

.business-card .card-desc {
  font-size: .9rem;
  color: var(--mist);
  margin-bottom: 20px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.business-card .card-tags {
  position: relative;
  z-index: 1;
}

.business-card .card-price {
  font-size: 1.3rem;
  color: var(--amber);
  margin-bottom: 20px;
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.business-card .btn {
  padding: 10px 24px;
  font-size: .88rem;
  position: relative;
  z-index: 1;
}

/* ========================================
   7. Quote / Testimonial
   ======================================== */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(223,211,194,.5);
  position: relative;
  transition: all .5s var(--ease-organic);
}

.quote-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(37,24,9,.06),
    0 0 0 1px rgba(176,115,56,.1),
    0 0 32px rgba(176,115,56,.03);
  border-color: rgba(176,115,56,.12);
  background: linear-gradient(180deg, var(--white) 0%, rgba(176,115,56,.015) 100%);
}

.quote-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 5rem;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  color: var(--amber);
  opacity: .05;
  font-weight: 700;
  transition: opacity .4s ease;
}

.quote-card:hover::before {
  opacity: .15;
  color: var(--amber);
}

.quote-text {
  font-style: italic;
  font-size: 1rem;
  color: var(--tea-warm);
  margin-bottom: 18px;
  padding-left: 24px;
  position: relative;
  z-index: 1;
  line-height: 1.85;
}

.quote-author {
  font-size: .87rem;
  color: var(--mist);
  text-align: right;
  line-height: 1.6;
}

.quote-author strong {
  color: var(--amber);
  font-weight: 500;
}

/* ========================================
   8. FAQ Section
   ======================================== */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

#faq-preview .section-title h2 { font-size: 1.5rem; }
#faq-preview .section-title p { font-size: .85rem; opacity: .7; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: none;
  border: 1px solid rgba(223,211,194,.5);
  transition: var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(176,115,56,.2);
  background: rgba(176,115,56,.01);
}

.faq-item.active {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px rgba(176,115,56,.08), 0 4px 16px rgba(176,115,56,.04);
  background: rgba(176,115,56,.01);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  font-size: .9rem;
  font-weight: 500;
  color: var(--tea-ink);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: var(--transition-fast);
  letter-spacing: .01em;
}

.faq-question:hover {
  color: var(--amber);
}

.faq-item.active .faq-question {
  color: var(--amber);
}

.faq-icon {
  font-size: 1rem;
  color: var(--amber);
  transition: transform .3s ease;
  flex-shrink: 0;
  margin-left: 12px;
  font-weight: 300;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding: 0 20px 16px;
}

.faq-answer p {
  font-size: .85rem;
  line-height: 1.75;
  color: var(--tea-warm);
}

.faq-answer strong {
  color: var(--tea-ink);
}

@media (max-width: 768px) {
  .faq-list { grid-template-columns: 1fr; gap: 6px; }
  .faq-question { padding: 13px 16px; font-size: .86rem; }
  .faq-answer p { font-size: .82rem; }
}

/* FAQ Search */
.faq-search-wrapper {
  max-width: 600px;
  margin: 0 auto 32px;
}

.faq-search-box {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(223,211,194,.5);
  border-radius: 8px;
  padding: 4px 6px 4px 20px;
  transition: all .3s ease;
  box-shadow: var(--shadow-sm);
}

.faq-search-box:focus-within {
  border-color: rgba(176,115,56,.3);
  box-shadow: 0 0 0 3px rgba(176,115,56,.05), var(--shadow-md);
}

.faq-search-icon {
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-right: 10px;
  opacity: .4;
  color: var(--mist);
}

.faq-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: .93rem;
  color: var(--tea-ink);
  padding: 10px 4px;
  font-family: var(--font-body);
  min-width: 0;
}

.faq-search-input::placeholder {
  color: var(--mist-light);
  opacity: 1;
}

.faq-search-clear {
  background: var(--cream-warm);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: .8rem;
  color: var(--mist);
  flex-shrink: 0;
  transition: background .2s, color .2s;
  line-height: 1;
}

.faq-search-clear:hover {
  background: var(--cream-deep);
  color: var(--tea-ink);
}

.faq-search-count {
  text-align: center;
  font-size: .85rem;
  color: var(--mist);
  margin-top: 8px;
  min-height: 20px;
  display: none;
}

/* ========================================
   9. Media Coverage
   ======================================== */
.media-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .media-list { grid-template-columns: 1fr; gap: 18px; }
}

.media-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(223,211,194,.5);
  transition: all .5s var(--ease-organic);
  position: relative;
  overflow: hidden;
}

.media-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(176,115,56,.03) 0%, transparent 100%);
  opacity: 0;
  transition: height .6s cubic-bezier(.16,1,.3,1), opacity .4s ease;
}

.media-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(37,24,9,.06),
    0 0 0 1px rgba(176,115,56,.1),
    0 0 32px rgba(176,115,56,.03);
  border-color: rgba(176,115,56,.15);
  background: linear-gradient(180deg, var(--white) 0%, rgba(176,115,56,.02) 100%);
}

.media-card:hover::before {
  opacity: 1;
  height: 100%;
  background: linear-gradient(to top, rgba(176,115,56,.05) 0%, transparent 100%);
}

.media-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.media-tag {
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 6px;
  letter-spacing: .03em;
  white-space: nowrap;
}
.media-tag-gold { background: var(--cream-warm); color: var(--accent); }
.media-tag-red { background: #f9eeeb; color: #8b5e3c; }
.media-tag-blue { background: #eef2f5; color: #5c6b7a; }
.media-tag-green { background: #eef5ee; color: #5a7a5a; }
.media-tag-purple { background: #f3eef5; color: #7a5a7a; }
.media-tag-teal { background: #eef5f3; color: #5a7a6b; }

.media-date {
  font-size: .82rem;
  color: var(--mist);
}

.media-title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--tea-ink);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.media-summary {
  font-size: .87rem;
  line-height: 1.75;
  color: var(--tea-warm);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.media-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--cream-deep);
}

.media-source {
  font-size: .83rem;
  color: var(--mist);
}

.media-link {
  font-size: .86rem;
  font-weight: 500;
  color: var(--amber);
  text-decoration: none;
  transition: color .25s;
  letter-spacing: .02em;
}

.media-link:hover {
  color: var(--caramel);
}

/* ========================================
   10. Gallery
   ======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  grid-auto-rows: 200px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: var(--shadow-card);
  transition: all .6s var(--ease-organic);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(37,24,9,.08),
    0 0 0 1px rgba(176,115,56,.1),
    0 0 32px rgba(176,115,56,.04);
  z-index: 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease-organic);
}

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

.gallery-wide {
  grid-column: span 2;
}

.gallery-wide img {
  height: 100%;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-tall img {
  height: 100%;
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 18px 16px;
  background: linear-gradient(to top, rgba(37,24,9,.85) 0%, rgba(37,24,9,.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transform: translateY(8px);
  transition: all .4s var(--ease-organic);
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-caption {
  font-size: .88rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
}

.gallery-meta {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .3px;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37,24,9,.02) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
  background: linear-gradient(to top, rgba(176,115,56,.04) 0%, transparent 50%);
}

@media (max-width: 768px) {
  .faq-search-wrapper { margin-bottom: 24px; }
  .faq-search-input { font-size: .9rem; padding: 8px 4px; }
  .faq-search-icon { font-size: .95rem; }
  .media-card { padding: 22px 20px; }
  .media-title { font-size: .98rem; -webkit-line-clamp: 2; }
  .media-summary { -webkit-line-clamp: 2; font-size: .83rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall img { height: 100%; }
}

/* ========================================
   11. Brand Ecosystem
   ======================================== */
.ecosystem-section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.ecosystem-label-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: .15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ecosystem-label-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,115,56,.25), transparent);
}

.brand-core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 0 8px;
}

.brand-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: left;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(223,211,194,.4);
  transition: all .5s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.brand-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(176,115,56,.04) 0%, transparent 100%);
  transition: height .6s cubic-bezier(.16,1,.3,1);
}

.brand-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(37,24,9,.07),
    0 0 0 1px rgba(176,115,56,.12),
    0 0 40px rgba(176,115,56,.04);
  border-color: rgba(176,115,56,.2);
  background: linear-gradient(180deg, var(--white) 0%, rgba(176,115,56,.02) 100%);
}

.brand-card:hover::before {
  height: 100%;
  background: linear-gradient(to top, rgba(176,115,56,.06) 0%, transparent 100%);
}

.brand-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--amber);
  position: relative;
  z-index: 1;
  transition: all .4s var(--ease-organic);
  background: rgba(176,115,56,.04);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid rgba(176,115,56,.06);
}

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

.brand-card:hover .brand-card-icon {
  transform: scale(1.05);
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
  box-shadow: 0 4px 16px rgba(176,115,56,.2);
}

.brand-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--tea-ink);
  letter-spacing: .04em;
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  margin-bottom: 4px;
}

.brand-card-sub {
  font-size: .72rem;
  color: var(--amber);
  letter-spacing: .18em;
  font-weight: 500;
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  opacity: .7;
}

.brand-card-desc {
  font-size: .88rem;
  color: var(--mist);
  line-height: 1.75;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.brand-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.brand-card-tags span {
  font-size: .75rem;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(176,115,56,.04);
  color: var(--tea-warm);
  border: 1px solid rgba(176,115,56,.08);
  transition: all .3s var(--ease-organic);
  letter-spacing: .02em;
}

.brand-card:hover .brand-card-tags span {
  background: rgba(176,115,56,.08);
  border-color: rgba(176,115,56,.15);
  color: var(--amber);
}

.brand-card-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--cream-warm);
  color: var(--amber);
  opacity: 0;
  transform: translateX(-6px);
  transition: all .4s var(--ease-organic);
}

.brand-card-arrow svg {
  width: 16px;
  height: 16px;
}

.brand-card:hover .brand-card-arrow {
  opacity: 1;
  transform: translateX(0);
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(176,115,56,.15);
}

.brand-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 8px;
}

.brand-product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(223,211,194,.35);
  transition: all .5s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.brand-product-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(176,115,56,.03) 0%, transparent 100%);
  transition: height .6s cubic-bezier(.16,1,.3,1);
}

.brand-product-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(37,24,9,.06),
    0 0 0 1px rgba(176,115,56,.1),
    0 0 32px rgba(176,115,56,.03);
  border-color: rgba(176,115,56,.18);
  background: linear-gradient(180deg, var(--white) 0%, rgba(176,115,56,.02) 100%);
}

.brand-product-card:hover::before {
  height: 100%;
  background: linear-gradient(to top, rgba(176,115,56,.05) 0%, transparent 100%);
}

.brand-product-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  color: var(--amber);
  position: relative;
  z-index: 1;
  transition: all .4s var(--ease-organic);
  background: rgba(176,115,56,.04);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid rgba(176,115,56,.06);
}

.brand-product-icon svg {
  width: 100%;
  height: 100%;
}

.brand-product-card:hover .brand-product-icon {
  transform: scale(1.06);
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
  box-shadow: 0 4px 12px rgba(176,115,56,.18);
}

.brand-product-card:hover .brand-product-name {
  color: var(--amber);
}

.brand-product-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--tea-ink);
  letter-spacing: .04em;
  position: relative;
  z-index: 1;
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.brand-product-desc {
  font-size: .82rem;
  color: var(--mist);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

.brand-product-parent {
  font-size: .72rem;
  color: var(--amber);
  letter-spacing: .06em;
  position: relative;
  z-index: 1;
  opacity: .55;
  font-weight: 500;
  transition: opacity .3s var(--ease-organic);
}

.brand-product-card:hover .brand-product-parent {
  opacity: 1;
}

/* ========================================
   12. Pillars / Contact
   ======================================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 36px 0;
}

.pillar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(223,211,194,.5);
  transition: all .5s var(--ease-organic);
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(176,115,56,.04) 0%, transparent 100%);
  transition: height .6s cubic-bezier(.16,1,.3,1);
}

.pillar:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(37,24,9,.06),
    0 0 0 1px rgba(176,115,56,.1),
    0 0 32px rgba(176,115,56,.03);
  border-color: rgba(176,115,56,.15);
  background: linear-gradient(180deg, var(--white) 0%, rgba(176,115,56,.02) 100%);
}

.pillar:hover::before {
  height: 100%;
  background: linear-gradient(to top, rgba(176,115,56,.05) 0%, transparent 100%);
}

.pillar-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
  transition: var(--transition-base);
}

.pillar:hover .pillar-icon {
  transform: scale(1.05);
  color: var(--amber);
}

.pillar:hover .pillar-icon-text {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
  box-shadow: 0 4px 12px rgba(176,115,56,.18);
}

.pillar:hover h3 {
  color: var(--amber);
}

.pillar h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
  color: var(--tea-ink);
}

.pillar p {
  font-size: .9rem;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

/* ========================================
   13. Page Header (Inner Pages)
   ======================================== */
.page-header {
  background: #1a1008;
  padding: 120px 0 72px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--cream), transparent);
  pointer-events: none;
}

.page-header .page-header-canvas,
.hero .page-header-canvas {
  position: absolute;
  inset: 0;
  opacity: .25;
  pointer-events: none;
}

.page-header .page-header-canvas canvas,
.hero .page-header-canvas canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.page-header h1 {
  color: var(--honey);
  border: none;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin-bottom: 16px;
  position: relative;
  letter-spacing: .08em;
  text-shadow: 0 2px 30px rgba(232,196,124,.2);
  animation: fadeInUp .8s var(--ease-warm);
  font-weight: 400;
}

.page-header p {
  font-size: 1.05rem;
  position: relative;
  color: rgba(255,255,255,.9);
  letter-spacing: .04em;
  animation: fadeInUp .8s var(--ease-warm) .15s both;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  font-size: .86rem;
  position: relative;
  animation: fadeInUp .8s var(--ease-warm) .25s both;
}

.breadcrumb a {
  color: var(--amber);
  font-weight: 500;
  transition: var(--transition-fast);
}

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

.breadcrumb span { opacity: .4; }

.content-area {
  padding: 70px 0;
  background-image: none;
  position: relative;
}

.content-area::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,115,56,.08), transparent);
}

.content-area .content-block {
  margin-bottom: 52px;
}

.content-area .content-block:last-child {
  margin-bottom: 0;
}

.content-block ul,
.content-area ul {
  list-style: disc;
  padding-left: 1.8rem;
}
.content-block ol,
.content-area ol {
  padding-left: 1.8rem;
}
.content-block li,
.content-area li {
  margin-bottom: .5rem;
  line-height: 1.75;
  color: var(--tea-warm);
}

/* ========================================
   Page Header Dynamic Effects
   不同栏目不同动感效果
   ======================================== */

/* 岩茶 - 茶烟袅袅效果 */
.page-header.tea-dynamic::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.page-header.tea-dynamic::after {
  content: '';
  position: absolute;
  bottom: 20%; left: 20%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(176,115,56,.03);
  filter: blur(80px);
  animation: teaSmokeRise 18s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes teaSmokeRise {
  0% { transform: translate(0, 0) scale(1); opacity: .3; }
  25% { transform: translate(30px, -20px) scale(1.1); opacity: .5; }
  50% { transform: translate(-15px, -40px) scale(.9); opacity: .3; }
  75% { transform: translate(20px, -10px) scale(1.05); opacity: .4; }
  100% { transform: translate(-10px, -30px) scale(1); opacity: .3; }
}

/* 批发 - 波纹扩散效果 */
.page-header.wholesale-dynamic::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(176,115,56,.06);
  transform: translate(-50%, -50%);
  animation: rippleExpand 8s ease-out infinite;
  pointer-events: none;
}

@keyframes rippleExpand {
  0% { width: 100px; height: 100px; opacity: .4; border-width: 2px; }
  100% { width: 800px; height: 800px; opacity: 0; border-width: 1px; }
}

/* 茶点 - 甜蜜漂浮效果 */
.page-header.sweets-dynamic::after {
  content: '';
  position: absolute;
  top: 30%; right: 15%;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(212,174,104,.03);
  filter: blur(60px);
  animation: sweetFloat 14s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes sweetFloat {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-20px, 15px) scale(1.1); }
  66% { transform: translate(15px, -10px) scale(.95); }
  100% { transform: translate(-5px, 20px) scale(1.05); }
}

/* 俱乐部 - 脉冲光晕效果 */
.page-header.club-dynamic::after {
  content: '';
  position: absolute;
  top: 40%; left: 50%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(176,115,56,.02);
  filter: blur(60px);
  transform: translate(-50%, -50%);
  animation: clubPulse 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes clubPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .3; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: .5; }
}

/* 会所 - 温暖呼吸效果 */
.page-header.banquet-dynamic::after {
  content: '';
  position: absolute;
  bottom: 10%; left: 30%;
  width: 400px; height: 200px;
  border-radius: 50%;
  background: rgba(176,115,56,.03);
  filter: blur(80px);
  animation: banquetBreathe 10s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes banquetBreathe {
  0% { transform: scale(1) translateY(0); opacity: .2; }
  50% { transform: scale(1.15) translateY(-10px); opacity: .4; }
  100% { transform: scale(.95) translateY(5px); opacity: .2; }
}

/* 品牌 - 墨韵晕染效果 */
.page-header.brand-dynamic::after {
  content: '';
  position: absolute;
  top: 20%; left: 10%;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(176,115,56,.03);
  filter: blur(70px);
  animation: inkSpread 20s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes inkSpread {
  0% { transform: translate(0, 0) scale(.8); opacity: .2; border-radius: 50%; }
  25% { transform: translate(40px, -20px) scale(1.1); opacity: .35; border-radius: 45%; }
  50% { transform: translate(-20px, 30px) scale(1); opacity: .25; border-radius: 55%; }
  75% { transform: translate(30px, 10px) scale(1.15); opacity: .3; border-radius: 48%; }
  100% { transform: translate(-10px, -15px) scale(.9); opacity: .2; border-radius: 52%; }
}

/* 商城 - 光线流动效果 */
.page-header.shop-dynamic::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(176,115,56,.02), transparent);
  animation: lightSweep 12s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lightSweep {
  0% { left: -60%; }
  50% { left: 100%; }
  100% { left: -60%; }
}

/* ========================================
   14. Footer
   ======================================== */
.footer {
  background: var(--tea-deep);
  color: rgba(255,255,255,.45);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(176,115,56,.1) 15%,
    rgba(176,115,56,.25) 50%,
    rgba(176,115,56,.1) 85%,
    transparent 100%
  );
}

.footer::after {
  content: '';
  position: absolute;
  bottom: 0; left: 25%;
  width: 50%; height: 200px;
  background: radial-gradient(ellipse at center bottom, rgba(176,115,56,.02) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.footer-col:nth-child(2),
.footer-col:nth-child(3),
.footer-col:nth-child(4),
.footer-col:nth-child(5) {
  text-align: center;
}

.footer-col:nth-child(2) h4::after,
.footer-col:nth-child(3) h4::after,
.footer-col:nth-child(4) h4::after,
.footer-col:nth-child(5) h4::after {
  margin-left: auto;
  margin-right: auto;
}

.footer-col:nth-child(2) a,
.footer-col:nth-child(3) a,
.footer-col:nth-child(4) a,
.footer-col:nth-child(5) a {
  display: block;
}

.footer-col:nth-child(2) a::before,
.footer-col:nth-child(3) a::before,
.footer-col:nth-child(4) a::before,
.footer-col:nth-child(5) a::before {
  left: 50%;
  transform: translateX(-50%);
  width: 0;
}

.footer-col:nth-child(2) a:hover::before,
.footer-col:nth-child(3) a:hover::before,
.footer-col:nth:nth-child(4) a:hover::before,
.footer-col:nth-child(5) a:hover::before {
  width: 100%;
}

.footer-col h4 {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  margin-bottom: 22px;
  border: none;
  position: relative;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 1.5px;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--amber);
  margin-top: 12px;
  border-radius: 1px;
  opacity: .5;
}

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

.footer-col li {
  margin-bottom: 11px;
}

.footer-col a {
  color: rgba(255,255,255,.4);
  font-size: .88rem;
  transition: var(--transition-fast);
  display: inline-block;
  position: relative;
}

.footer-col a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width .3s ease;
}

.footer-col a:hover {
  color: var(--amber-light);
  text-shadow: 0 0 12px rgba(176,115,56,.15);
}

.footer-col a:hover::before {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 24px 0;
  text-align: center;
  font-size: .83rem;
  color: rgba(255,255,255,.25);
  position: relative;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,115,56,.08), transparent);
}

.footer-bottom a {
  color: var(--amber);
  transition: var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ========================================
   15. Utility Classes
   ======================================== */
.text-center { text-align: center; }
.text-primary { color: var(--amber); }
.text-gold { color: var(--gold); }
.text-accent { color: var(--accent); }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.hidden { display: none !important; }

/* ========================================
   16. Scroll Animations
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(.96);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease-organic), transform .7s var(--ease-organic);
}

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

.stagger-reveal > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s var(--ease-organic), transform .6s var(--ease-organic);
}

.stagger-reveal.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-reveal.visible > *:nth-child(2) { transition-delay: .1s; opacity: 1; transform: translateY(0); }
.stagger-reveal.visible > *:nth-child(3) { transition-delay: .2s; opacity: 1; transform: translateY(0); }
.stagger-reveal.visible > *:nth-child(4) { transition-delay: .3s; opacity: 1; transform: translateY(0); }
.stagger-reveal.visible > *:nth-child(5) { transition-delay: .4s; opacity: 1; transform: translateY(0); }
.stagger-reveal.visible > *:nth-child(6) { transition-delay: .5s; opacity: 1; transform: translateY(0); }

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 12px rgba(176,115,56,.06); }
  50% { box-shadow: 0 0 24px rgba(176,115,56,.1); }
}

@keyframes breathe {
  0%, 100% { opacity: .4; transform: scale(.95); }
  50% { opacity: .8; transform: scale(1.05); }
}

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

@keyframes inkPulse {
  0%, 100% { opacity: .03; }
  50% { opacity: .06; }
}

/* ========================================
   17. Icon Text Components
   ======================================== */
.icon-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  color: var(--amber);
  background: rgba(176,115,56,.05);
  border-radius: 8px;
  border: 1px solid rgba(176,115,56,.06);
  font-family: var(--font-heading);
  font-weight: 400;
  margin-bottom: 18px;
  transition: all .4s var(--ease-organic);
}

.business-card:hover .icon-text {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
  box-shadow: 0 4px 16px rgba(176,115,56,.2);
  transform: scale(1.05);
}

.pillar-icon-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  color: var(--amber);
  background: rgba(176,115,56,.05);
  border-radius: 8px;
  border: 1px solid rgba(176,115,56,.06);
  margin-bottom: 20px;
}



/* ========================================
   18. Responsive Design
   ======================================== */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }

  .pillars {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .data-bar {
    gap: 20px 32px;
    padding: 24px 28px;
  }
  .data-item:nth-child(n+5)::after { display: none; }
  .hero { padding: 110px 0 80px; min-height: auto; }
  .section { padding: 76px 0; }
}

@media (max-width: 768px) {
  :root {
    --max-width: 100%;
  }

  .header-inner { padding: 0 16px; height: 64px; }

  .nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(247,241,232,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px 24px;
    overflow-y: auto;
    z-index: 999;
  }

  .nav.active { display: flex; }

  .nav > .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--cream-deep);
  }

  .nav > .nav-item > a {
    padding: 16px 0;
    font-size: 1.05rem;
    color: var(--tea-ink);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    display: none;
    background: transparent;
  }

  .dropdown-menu::before { display: none; }

  .nav-item.dropdown-open .dropdown-menu { display: block; }
  .nav-toggle { display: flex; }

  .hero {
    padding: 90px 0 64px;
    min-height: 78vh;
  }

  .hero h1 { font-size: 1.9rem; letter-spacing: .03em; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .btn { padding: 14px 28px; justify-content: center; }

  .data-bar {
    flex-wrap: wrap;
    gap: 16px 24px;
    padding: 20px;
  }

  .data-item { min-width: calc(33% - 16px); }
  .data-item::after { display: none !important; }
  .data-num { font-size: 1.5rem; }

  .cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .quotes-grid { grid-template-columns: 1fr; gap: 20px; }
  .section { padding: 56px 0; }
  .section-title { margin-bottom: 44px; }
  .section-title h2 { font-size: 1.6rem; }

  .business-card {
    padding: 28px 24px;
  }

  .brand-product-grid,
  .brand-core-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  table { font-size: .82rem; }
  th, td { padding: 10px 12px; }

  .page-header { padding: 96px 0 56px; }
  .content-area { padding: 48px 0; }
}

@media (max-width: 480px) {
  .brand-product-grid,
  .brand-core-grid { grid-template-columns: 1fr; }
  .data-item { min-width: calc(50% - 12px); }
  .hero-subtitle { font-size: .92rem; }
  .section-title p { font-size: .92rem; }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .gallery-wide, .gallery-tall {
    grid-column: span 1;
  }
  .gallery-wide img, .gallery-tall img, .gallery-item img {
    height: 220px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

/* ========================================
   19. Data Bar
   ======================================== */
.data-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  background: var(--tea-deep);
  border: none;
  border-radius: var(--radius-lg);
  padding: 28px 44px;
  animation: fadeInUp .8s var(--ease-organic) .6s both;
  box-shadow:
    0 8px 32px rgba(0,0,0,.15),
    inset 0 1px 0 rgba(176,115,56,.08),
    inset 0 -1px 0 rgba(0,0,0,.1);
  position: relative;
  overflow: hidden;
}

/* Light background data-bar */
.content-area .data-bar,
.section .data-bar[style*="gold"],
.section .data-bar[style*="light"] {
  background: var(--cream-warm);
  box-shadow: 0 4px 16px rgba(37,24,9,.06);
}

.content-area .data-bar .data-num,
.section .data-bar[style*="gold"] .data-num,
.section .data-bar[style*="light"] .data-num {
  color: var(--amber);
  text-shadow: none;
}

.content-area .data-bar .data-label,
.section .data-bar[style*="gold"] .data-label,
.section .data-bar[style*="light"] .data-label {
  color: var(--tea-warm);
}

.data-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,115,56,.2), transparent);
}

.data-bar::after {
  display: none;
}

.data-item {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.data-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: rgba(176,115,56,.1);
}

.data-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--honey);
  display: block;
  letter-spacing: .02em;
  transition: all .3s ease;
  text-shadow: 0 0 20px rgba(232,196,124,.15);
}

.data-item:hover {
  background: rgba(176,115,56,.04);
  border-radius: 8px;
}

.data-item:hover .data-num {
  color: var(--honey);
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(212,174,104,.3);
}

.data-label {
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  letter-spacing: 1px;
  margin-top: 4px;
  font-weight: 500;
}

/* ========================================
   20. Table Styles
   ======================================== */
.table-wrapper {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

thead {
  background: var(--tea-deep);
  color: var(--white);
}

th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--cream-deep);
  font-size: .92rem;
  vertical-align: top;
  color: var(--tea-warm);
}

tbody tr {
  transition: var(--transition-fast);
}

tbody tr:hover {
  background: var(--cream-warm);
}

tbody tr:last-child td {
  border-bottom: none;
}

table .highlight { color: var(--accent); font-weight: 600; }
table .price-cell { font-weight: 600; color: var(--amber); white-space: nowrap; font-family: var(--font-heading); }

/* ========================================
   21. Scroll Progress
   ======================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--gradient-gold);
  z-index: 9999;
  transition: width .1s linear;
  opacity: .6;
}

/* ========================================
   Scrollbar
   ======================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--cream-deep); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--mist-light); }

/* ========================================
   Content Block FAQ Layout Fix
   ======================================== */
.content-block .faq-list,
.content-area .faq-list {
  grid-template-columns: 1fr;
}

/* ========================================
   22. Decorative Elements - Handcrafted Feel
   ======================================== */
.ink-wash {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(176,115,56,.03) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: inkDrift 25s ease-in-out infinite alternate;
}

@keyframes inkDrift {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  25% { transform: translate(15px, -10px) scale(1.05) rotate(2deg); }
  50% { transform: translate(-10px, 15px) scale(.95) rotate(-1deg); }
  75% { transform: translate(8px, 5px) scale(1.02) rotate(1deg); }
  100% { transform: translate(-5px, -8px) scale(1) rotate(-1deg); }
}

.organic-divider {
  position: relative;
  height: 60px;
  overflow: hidden;
}

.organic-divider::before {
  content: '';
  position: absolute;
  bottom: 0; left: -5%; right: -5%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(176,115,56,.08) 20%,
    rgba(176,115,56,.15) 50%,
    rgba(176,115,56,.08) 80%,
    transparent
  );
}

.organic-divider::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 30%; right: 30%;
  height: 3px;
  background: radial-gradient(ellipse at center, rgba(176,115,56,.06) 0%, transparent 80%);
  filter: blur(2px);
}

.tea-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(176,115,56,.04);
  pointer-events: none;
  opacity: 0;
  animation: teaRingAppear 2s var(--ease-organic) forwards;
}

@keyframes teaRingAppear {
  to { opacity: 1; }
}

.brush-stroke {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(176,115,56,.12), rgba(176,115,56,.06), transparent);
  border-radius: 1px;
  pointer-events: none;
}

/* ========================================
   各栏目专属HERO动态效果
   ======================================== */

/* --- 雨滴效果 (wholesale) --- */
.hero-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero-rain span {
  position: absolute;
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, 
    transparent,
    rgba(176,115,56,.4) 50%,
    transparent
  );
  animation: rainDrop linear infinite;
}

.hero-rain span:nth-child(1) { left: 5%; animation-duration: 0.8s; animation-delay: 0s; }
.hero-rain span:nth-child(2) { left: 10%; animation-duration: 0.7s; animation-delay: 0.2s; }
.hero-rain span:nth-child(3) { left: 15%; animation-duration: 0.9s; animation-delay: 0.1s; }
.hero-rain span:nth-child(4) { left: 20%; animation-duration: 0.75s; animation-delay: 0.3s; }
.hero-rain span:nth-child(5) { left: 25%; animation-duration: 0.85s; animation-delay: 0.15s; }
.hero-rain span:nth-child(6) { left: 30%; animation-duration: 0.7s; animation-delay: 0.4s; }
.hero-rain span:nth-child(7) { left: 35%; animation-duration: 0.9s; animation-delay: 0.25s; }
.hero-rain span:nth-child(8) { left: 40%; animation-duration: 0.75s; animation-delay: 0.35s; }
.hero-rain span:nth-child(9) { left: 45%; animation-duration: 0.8s; animation-delay: 0.05s; }
.hero-rain span:nth-child(10) { left: 50%; animation-duration: 0.7s; animation-delay: 0.45s; }
.hero-rain span:nth-child(11) { left: 55%; animation-duration: 0.85s; animation-delay: 0.2s; }
.hero-rain span:nth-child(12) { left: 60%; animation-duration: 0.75s; animation-delay: 0.3s; }
.hero-rain span:nth-child(13) { left: 65%; animation-duration: 0.9s; animation-delay: 0.1s; }
.hero-rain span:nth-child(14) { left: 70%; animation-duration: 0.8s; animation-delay: 0.4s; }
.hero-rain span:nth-child(15) { left: 75%; animation-duration: 0.7s; animation-delay: 0.25s; }
.hero-rain span:nth-child(16) { left: 80%; animation-duration: 0.85s; animation-delay: 0.15s; }
.hero-rain span:nth-child(17) { left: 85%; animation-duration: 0.75s; animation-delay: 0.35s; }
.hero-rain span:nth-child(18) { left: 90%; animation-duration: 0.8s; animation-delay: 0.05s; }
.hero-rain span:nth-child(19) { left: 95%; animation-duration: 0.9s; animation-delay: 0.45s; }
.hero-rain span:nth-child(20) { left: 3%; animation-duration: 0.7s; animation-delay: 0.5s; }

@keyframes rainDrop {
  0% {
    top: -10%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 110%;
    opacity: 0;
  }
}

/* --- 风效果 (banquet/shop) --- */
.hero-wind {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero-wind span {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,196,124,.3), transparent);
  animation: windBlow linear infinite;
}

.hero-wind span:nth-child(1) { top: 15%; width: 150px; left: -150px; animation-duration: 4s; animation-delay: 0s; }
.hero-wind span:nth-child(2) { top: 25%; width: 200px; left: -200px; animation-duration: 5s; animation-delay: 1s; }
.hero-wind span:nth-child(3) { top: 35%; width: 120px; left: -120px; animation-duration: 3.5s; animation-delay: 0.5s; }
.hero-wind span:nth-child(4) { top: 45%; width: 180px; left: -180px; animation-duration: 4.5s; animation-delay: 1.5s; }
.hero-wind span:nth-child(5) { top: 55%; width: 100px; left: -100px; animation-duration: 3s; animation-delay: 0.8s; }
.hero-wind span:nth-child(6) { top: 65%; width: 160px; left: -160px; animation-duration: 4s; animation-delay: 2s; }
.hero-wind span:nth-child(7) { top: 75%; width: 140px; left: -140px; animation-duration: 3.8s; animation-delay: 1.2s; }

@keyframes windBlow {
  0% {
    left: -200px;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 110%;
    opacity: 0;
  }
}

/* --- 阳光日出效果 (tea/brand) --- */
.hero-sunrise {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 60%;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, 
    rgba(255,180,80,.15) 0%,
    rgba(255,150,50,.1) 30%,
    rgba(255,120,40,.05) 50%,
    transparent 70%
  );
  animation: sunriseGlow 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-sunrise::before {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100px;
  background: radial-gradient(ellipse, 
    rgba(255,200,100,.3) 0%,
    rgba(255,180,80,.15) 40%,
    transparent 70%
  );
  border-radius: 50% 50% 0 0;
  animation: sunPulse 4s ease-in-out infinite;
}

@keyframes sunriseGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes sunPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.8; }
  50% { transform: translateX(-50%) scale(1.1); opacity: 1; }
}

/* --- 茶香飘散 (tea/sweets) --- */
.hero-aroma {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero-aroma span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(232,196,124,.6) 0%, transparent 70%);
  border-radius: 50%;
  animation: aromaFloat 8s ease-out infinite;
}

.hero-aroma span:nth-child(1) { left: 10%; animation-delay: 0s; }
.hero-aroma span:nth-child(2) { left: 20%; animation-delay: 1s; width: 6px; height: 6px; }
.hero-aroma span:nth-child(3) { left: 30%; animation-delay: 2s; }
.hero-aroma span:nth-child(4) { left: 40%; animation-delay: 0.5s; width: 5px; height: 5px; }
.hero-aroma span:nth-child(5) { left: 50%; animation-delay: 1.5s; }
.hero-aroma span:nth-child(6) { left: 60%; animation-delay: 2.5s; width: 7px; height: 7px; }
.hero-aroma span:nth-child(7) { left: 70%; animation-delay: 3s; }
.hero-aroma span:nth-child(8) { left: 80%; animation-delay: 3.5s; width: 5px; height: 5px; }
.hero-aroma span:nth-child(9) { left: 90%; animation-delay: 4s; }
.hero-aroma span:nth-child(10) { left: 15%; animation-delay: 4.5s; width: 6px; height: 6px; }

@keyframes aromaFloat {
  0% {
    bottom: 0;
    opacity: 0;
    transform: translateX(0);
  }
  20% {
    opacity: 0.8;
  }
  50% {
    transform: translateX(30px);
  }
  80% {
    opacity: 0.4;
  }
  100% {
    bottom: 100%;
    opacity: 0;
    transform: translateX(-20px);
  }
}

/* --- 山山水水 (club) --- */
.hero-mountains-scene {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  pointer-events: none;
}

.hero-mountains-scene::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background: 
    /* 远山1 */
    linear-gradient(120deg, transparent 30%, rgba(60,40,20,.2) 30%, rgba(60,40,20,.2) 35%, transparent 35%),
    /* 远山2 */
    linear-gradient(130deg, transparent 45%, rgba(80,50,25,.15) 45%, rgba(80,50,25,.15) 52%, transparent 52%),
    /* 远山3 */
    linear-gradient(125deg, transparent 60%, rgba(50,35,18,.18) 60%, rgba(50,35,18,.18) 68%, transparent 68%);
  animation: mountainsFloat 20s ease-in-out infinite;
}

.hero-mountains-scene::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(160deg, 
    transparent 40%, 
    rgba(40,25,12,.25) 40%, 
    rgba(40,25,12,.25) 55%, 
    transparent 55%
  );
  animation: mountainsFloat 15s ease-in-out infinite reverse;
}

@keyframes mountainsFloat {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3%); }
}

/* --- 晨雾效果 (club/brand) --- */
.hero-morning-mist {
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,.05) 15%,
    rgba(255,255,255,.08) 30%,
    rgba(255,255,255,.05) 45%,
    transparent 50%,
    rgba(255,255,255,.06) 65%,
    rgba(255,255,255,.1) 80%,
    rgba(255,255,255,.06) 95%,
    transparent 100%
  );
  animation: mistDrift 25s linear infinite;
  pointer-events: none;
}

@keyframes mistDrift {
  0% { transform: translateX(0); }
  100% { transform: translateX(33.33%); }
}

/* --- 水波纹效果 (club) --- */
.hero-water-ripple {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 60px;
  pointer-events: none;
}

.hero-water-ripple::before,
.hero-water-ripple::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(232,196,124,.3);
  border-radius: 50%;
  animation: waterRipple 4s ease-out infinite;
}

.hero-water-ripple::after {
  animation-delay: 2s;
}

@keyframes waterRipple {
  0% {
    width: 30px;
    height: 15px;
    opacity: 0.8;
  }
  100% {
    width: 250px;
    height: 80px;
    opacity: 0;
  }
}

/* --- 云朵飘动 (tea/brand) --- */
.hero-clouds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero-clouds span {
  position: absolute;
  background: radial-gradient(ellipse, rgba(255,255,255,.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: cloudFloat linear infinite;
}

.hero-clouds span:nth-child(1) { 
  top: 10%; 
  left: -20%; 
  width: 200px; 
  height: 80px; 
  animation-duration: 40s; 
}
.hero-clouds span:nth-child(2) { 
  top: 20%; 
  left: -15%; 
  width: 150px; 
  height: 60px; 
  animation-duration: 50s; 
  animation-delay: 10s;
}
.hero-clouds span:nth-child(3) { 
  top: 5%; 
  left: -25%; 
  width: 180px; 
  height: 70px; 
  animation-duration: 45s; 
  animation-delay: 20s;
}

@keyframes cloudFloat {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(140vw);
    opacity: 0;
  }
}
