/* ═══════════════════════════════════════════════════════════════
   BAOBOSS DIM SUM — Ultra-Modern Marketing Site
   Palette: Cream Canvas · Forest Green · Bamboo Gold
   Design Language: Glassmorphism 2.0 · Animated Mesh · Bento Grids
   ═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Noto+Sans+SC:wght@400;500;700&family=Noto+Sans+Thai:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+SC:wght@500;700;900&family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&display=swap');

:root {
  /* ── Brand Core ── */
  --forest: #1B3320;
  --forest-bright: #2A4A30;
  --forest-glow: #3D6B42;
  --bamboo: #7A6020;
  --bamboo-bright: #9A7D2A;
  --bamboo-glow: #B8923D;
  --gold: #C9A14A;
  --gold-soft: #E8D5A0;
  --gold-bright: #F0E2BF;

  /* ── Surface System ── */
  --bg: #FDF8EC;
  --surface: rgba(255, 251, 240, 0.72);
  --surface-solid: #F5EDD8;
  --surface-2: #EDE3CC;
  --surface-3: #1B3320;
  --border: rgba(122, 96, 32, 0.12);
  --border-hover: rgba(122, 96, 32, 0.28);
  --border-glow: rgba(201, 161, 74, 0.35);

  /* ── Text ── */
  --text: #1A2E1C;
  --text-secondary: #3A4F35;
  --text-muted: #7A8A6E;

  /* ── Effects ── */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(27, 51, 32, 0.06);
  --shadow: 0 4px 12px rgba(27, 51, 32, 0.08), 0 1px 3px rgba(27, 51, 32, 0.05);
  --shadow-lg: 0 20px 50px rgba(27, 51, 32, 0.14);
  --shadow-gold: 0 12px 40px rgba(201, 161, 74, 0.22);
  --glow-forest: 0 0 40px rgba(45, 74, 42, 0.15);
  --glass: saturate(160%) blur(20px);

  --max-width: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', 'Noto Sans SC', 'Noto Sans JP', 'Noto Sans Thai', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html[lang="zh"] body, html[lang="ja"] body { font-family: 'Noto Sans SC', 'Noto Sans JP', 'Plus Jakarta Sans', system-ui, sans-serif; }
html[lang="th"] body { font-family: 'Noto Sans Thai', 'Plus Jakarta Sans', system-ui, sans-serif; }
.serif-quote { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; }

a { color: var(--forest-glow); text-decoration: none; transition: all 0.2s ease; }
a:hover { color: var(--bamboo-bright); }
::selection { background: rgba(61, 107, 66, 0.25); color: var(--text); }

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

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }

/* ═══════════════════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 248, 236, 0.78);
  backdrop-filter: var(--glass);
  -webkit-backdrop-filter: var(--glass);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(27, 51, 32, 0.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; max-width: var(--max-width); margin: 0 auto;
}
.brand-link {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.brand-link:hover { transform: scale(1.02); }
.brand-mark {
  height: 44px;
  width: auto;
  flex: 0 0 auto;
  display: block;
  border-radius: var(--radius-sm);
  filter: brightness(1.05) contrast(1.05);
  box-shadow: 0 2px 8px rgba(27, 51, 32, 0.12);
}
.brand-name {
  font-size: 16px; font-weight: 800;
  color: var(--text);
  letter-spacing: 4px;
  text-transform: uppercase;
}
.brand-name small {
  display: block;
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--forest-bright);
  font-weight: 600;
  margin-top: 2px;
}
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text-secondary);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: all 0.2s ease;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--bamboo-glow));
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--forest);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 10px;
  min-width: 44px; min-height: 44px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--bamboo); margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}
.btn:hover::before { left: 120%; }
.btn-primary {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-bright) 50%, var(--forest-glow) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(27, 51, 32, 0.25), 0 0 0 1px rgba(255,255,255,0.1) inset;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px rgba(27, 51, 32, 0.35), 0 0 0 1px rgba(255,255,255,0.15) inset;
  color: #fff;
}
.btn-gold {
  background: linear-gradient(135deg, var(--bamboo), var(--gold));
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--bamboo-bright));
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px rgba(201, 161, 74, 0.35);
}
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border-hover);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--bamboo);
  background: rgba(201, 161, 74, 0.06);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 22%, rgba(201, 161, 74, 0.18), transparent 55%),
    radial-gradient(ellipse at 82% 78%, rgba(42, 74, 48, 0.20), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--surface-solid) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -160px; right: -160px;
  background: radial-gradient(circle, rgba(184, 146, 61, 0.22), transparent 65%);
  pointer-events: none;
  filter: blur(60px);
  animation: float-orb 10s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  bottom: -200px; left: -160px;
  background: radial-gradient(circle, rgba(42, 74, 48, 0.24), transparent 65%);
  pointer-events: none;
  filter: blur(60px);
  animation: float-orb 12s ease-in-out infinite alternate-reverse;
}
@keyframes float-orb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 40px) scale(1.08); }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(42px, 6.5vw, 80px);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
}
.hero h1 .gold-text {
  background: linear-gradient(135deg, #7A6020 0%, #B8923D 40%, #C9A14A 60%, #7A6020 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero .tagline-cn {
  font-size: 24px; color: var(--bamboo);
  letter-spacing: 0.18em; margin-bottom: 10px;
  font-weight: 500;
}
.hero .tagline-en {
  font-size: 12px; color: var(--forest-bright);
  letter-spacing: 0.35em; text-transform: uppercase;
  margin-bottom: 32px;
  font-weight: 700;
}
.hero p.lead {
  font-size: 18px; color: var(--text-secondary);
  margin-bottom: 36px; max-width: 520px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.halal-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: linear-gradient(135deg, rgba(201, 161, 74, 0.12), rgba(184, 134, 11, 0.04));
  border: 1px solid rgba(201, 161, 74, 0.35);
  border-radius: 999px;
  color: var(--bamboo);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.halal-badge svg { width: 14px; height: 14px; }

/* Hero logo display */
.hero-logo-wrap {
  text-align: center;
  position: relative;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, #243D26 0%, #1A2E1C 60%, #132218 100%);
  box-shadow:
    0 32px 80px rgba(27, 51, 32, 0.28),
    inset 0 1px 0 rgba(216, 184, 112, 0.15);
  overflow: hidden;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle at center, rgba(201, 161, 74, 0.25), transparent 60%);
  filter: blur(50px);
  z-index: 0;
  animation: pulse-glow 5s ease-in-out infinite;
}
.hero-logo {
  position: relative;
  z-index: 1;
  width: 100%; max-width: 440px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(216, 184, 112, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.30);
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.section { padding: 120px 0; position: relative; }
.section-alt {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(184, 146, 61, 0.08), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(42, 74, 48, 0.14), transparent 55%),
    linear-gradient(180deg, #243D26 0%, #1B3320 50%, #132218 100%);
  color: rgba(253, 248, 236, 0.92);
  border-top: 1px solid rgba(216, 184, 112, 0.15);
  border-bottom: 1px solid rgba(216, 184, 112, 0.15);
  position: relative;
  overflow: hidden;
}
.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(216, 184, 112, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 184, 112, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 25%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 70%);
  pointer-events: none;
}
.section-alt h2,
.section-alt h3,
.section-alt h4 { color: var(--gold-soft); }
.section-alt p,
.section-alt li,
.section-alt strong,
.section-alt em { color: rgba(253, 248, 236, 0.85); }
.section-alt .section-eyebrow { color: var(--bamboo-glow); }
.section-alt .section-subtitle { color: rgba(253, 248, 236, 0.72); }
.section-alt a { color: var(--bamboo-glow); }
.section-alt a:hover { color: var(--gold-soft); }
.section-alt .btn-ghost {
  border-color: rgba(216, 184, 112, 0.40);
  color: var(--gold-soft);
}
.section-alt .btn-ghost:hover {
  border-color: var(--bamboo-glow);
  color: var(--gold-soft);
  background: rgba(216, 184, 112, 0.10);
}
.section-eyebrow {
  display: block;
  text-align: center;
  color: var(--forest-bright);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}
.section-title {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 18px;
  text-align: center;
  letter-spacing: -0.03em;
}
.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════════ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 161, 74, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201, 161, 74, 0.08) inset;
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(61, 107, 66, 0.12), rgba(201, 161, 74, 0.08));
  border: 1px solid rgba(201, 161, 74, 0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--bamboo);
  transition: all 0.3s ease;
}
.card:hover .card-icon {
  transform: scale(1.08);
  border-color: rgba(201, 161, 74, 0.45);
  box-shadow: 0 4px 16px rgba(201, 161, 74, 0.15);
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 22px; margin-bottom: 12px; color: var(--text); font-weight: 700; }
.card p { color: var(--text-secondary); font-size: 15.5px; line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   STEPS
   ═══════════════════════════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 52px 28px 32px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.step:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -10px; left: 28px;
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--forest-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.step h4 { font-size: 18px; margin-bottom: 8px; color: var(--text); font-weight: 700; }
.step p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════
   TWO-COLUMN
   ═══════════════════════════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.two-col h2 { font-size: clamp(30px, 3.5vw, 42px); margin-bottom: 18px; }
.two-col p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════════ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
}
.stat-number {
  font-size: 60px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--bamboo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.stat-label {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   INVESTMENT PACKAGES
   ═══════════════════════════════════════════════════════════════ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pkg {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pkg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 161, 74, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pkg:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201, 161, 74, 0.06) inset;
}
.pkg:hover::before { opacity: 1; }
.pkg.featured {
  border-color: var(--forest-bright);
  background:
    linear-gradient(180deg, rgba(61, 107, 66, 0.08), transparent 40%),
    var(--surface);
  box-shadow: var(--glow-forest);
}
.pkg.featured::before {
  content: 'Most Popular';
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--forest), var(--forest-bright));
  color: #fff;
  padding: 6px 18px; font-size: 10px; font-weight: 800;
  border-radius: 999px;
  letter-spacing: 0.2em; text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(27, 51, 32, 0.25);
}
.pkg-tier {
  color: var(--bamboo); font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}
.pkg-amount {
  font-size: 52px; font-weight: 800;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
}
.pkg-amount small { font-size: 16px; color: var(--text-muted); font-weight: 500; -webkit-text-fill-color: var(--text-muted); }
.pkg-equity { color: var(--text-secondary); margin-bottom: 28px; font-size: 14px; }
.pkg ul { list-style: none; text-align: left; margin-bottom: 28px; flex: 1; }
.pkg li {
  padding: 12px 0; color: var(--text-secondary); font-size: 14px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 10px;
}
.pkg li:last-child { border: none; }
.pkg li::before {
  content: '✓'; color: var(--gold);
  font-weight: 800;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   PROFIT SPLIT BAR
   ═══════════════════════════════════════════════════════════════ */
.split-section {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}
.split-section h4 {
  color: var(--gold); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.split-bar {
  display: flex;
  width: 100%;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-weight: 800; font-size: 14px;
  margin-bottom: 10px;
}
.split-bar > div {
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap; padding: 0 16px; min-width: 0;
}
.split-bar .split-investor { flex: 0 0 auto; min-width: 130px; }
.split-bar .split-company  { flex: 1 1 0; }
.split-investor {
  background: linear-gradient(135deg, var(--bamboo), var(--gold));
  color: #fff;
}
.split-company {
  background: linear-gradient(135deg, var(--forest), var(--forest-bright));
  color: #fff;
}
.split-caption {
  color: var(--text-muted); font-size: 12px;
  display: flex; justify-content: space-between;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════════════
   HIGHLIGHT LIST
   ═══════════════════════════════════════════════════════════════ */
.highlight-list { list-style: none; padding: 0; }
.highlight-list li {
  padding: 18px 0 18px 36px;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.6;
}
.highlight-list li::before {
  content: '';
  position: absolute; left: 0; top: 26px;
  width: 20px; height: 3px;
  background: linear-gradient(90deg, var(--forest-bright), var(--gold));
  border-radius: 2px;
}
.highlight-list li strong { color: var(--text); }

/* ═══════════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════════ */
.cta-banner {
  text-align: center;
  padding: 120px 28px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(184, 146, 61, 0.14), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(42, 74, 48, 0.10), transparent 55%),
    linear-gradient(180deg, var(--surface-solid) 0%, var(--bg) 100%);
  border-top: 1px solid rgba(184, 146, 61, 0.30);
  border-bottom: 1px solid rgba(184, 146, 61, 0.30);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 161, 74, 0.05), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 18px; position: relative; }
.cta-banner p { color: var(--text-secondary); margin-bottom: 36px; font-size: 18px; position: relative; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner > .container > div { position: relative; }

/* ═══════════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════════ */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; margin-bottom: 8px;
  color: var(--bamboo); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--bg);
  border: 1.5px solid var(--border-hover);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface-solid);
  box-shadow: 0 0 0 4px rgba(201, 161, 74, 0.08);
}
.field textarea { min-height: 140px; resize: vertical; }
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 70px;
}
.contact-info dt {
  color: var(--gold); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-top: 28px; margin-bottom: 8px;
  font-weight: 700;
}
.contact-info dd { color: var(--text); font-size: 16px; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
footer {
  background: linear-gradient(180deg, #1B3320 0%, #132818 60%, #0D1E10 100%);
  color: rgba(253, 248, 236, 0.82);
  border-top: 1px solid rgba(216, 184, 112, 0.18);
  padding: 80px 0 36px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(216, 184, 112, 0.5) 50%,
    transparent 100%);
}
footer .brand-name { color: var(--gold-soft); }
footer .brand-name small { color: var(--bamboo-glow); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-grid h5 {
  color: var(--gold-soft);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 800;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; color: rgba(253, 248, 236, 0.72); font-size: 14px; }
.footer-grid li a { color: rgba(253, 248, 236, 0.72); font-size: 14px; transition: all 0.2s ease; }
.footer-grid li a:hover { color: var(--gold-soft); transform: translateX(2px); display: inline-block; }
.footer-grid p { color: rgba(253, 248, 236, 0.72); font-size: 14px; margin-bottom: 14px; }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(216, 184, 112, 0.15);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  color: rgba(253, 248, 236, 0.50); font-size: 12.5px;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════════
   DECORATIVE GRAPHICS
   ═══════════════════════════════════════════════════════════════ */

/* Animated steam wisps */
@keyframes steam-rise {
  0%   { transform: translateY(0) scaleX(1); opacity: 0; }
  20%  { opacity: 0.6; }
  50%  { transform: translateY(-60px) scaleX(1.4); opacity: 0.35; }
  100% { transform: translateY(-120px) scaleX(0.6); opacity: 0; }
}
.steam-wisps {
  position: absolute;
  width: 200px; height: 200px;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
}
.steam-wisps span {
  position: absolute;
  bottom: 0;
  width: 28px; height: 80px;
  background: radial-gradient(ellipse at center, rgba(244, 213, 122, 0.3), transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  animation: steam-rise 4s ease-in-out infinite;
}
.steam-wisps span:nth-child(1) { left: 35%; animation-delay: 0s; }
.steam-wisps span:nth-child(2) { left: 50%; animation-delay: 1.3s; }
.steam-wisps span:nth-child(3) { left: 65%; animation-delay: 2.6s; }

/* Gold brushstroke divider */
.brush-divider {
  display: block;
  margin: 0 auto;
  width: 260px; height: 28px;
  opacity: 0.6;
}

/* Chinese-lattice pattern background */
.lattice-bg {
  position: relative;
}
.lattice-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 161, 74, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 161, 74, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.lattice-bg > * { position: relative; z-index: 1; }

/* Red chop-seal accent */
.chop-seal {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #8B1E2E, #A8283A);
  border-radius: 6px;
  color: #fff;
  font-family: 'Noto Sans SC', Georgia, serif;
  font-size: 30px; font-weight: 800;
  box-shadow: 0 8px 24px rgba(139, 30, 46, 0.35);
  transform: rotate(-3deg);
  position: relative;
}
.chop-seal::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
}

/* Decorative gold corner ornaments */
.gold-corner {
  position: absolute;
  width: 80px; height: 80px;
  border: 2px solid var(--gold);
  opacity: 0.35;
  pointer-events: none;
}
.gold-corner.tl { top: 24px; left: 24px; border-right: none; border-bottom: none; }
.gold-corner.tr { top: 24px; right: 24px; border-left: none; border-bottom: none; }
.gold-corner.bl { bottom: 24px; left: 24px; border-right: none; border-top: none; }
.gold-corner.br { bottom: 24px; right: 24px; border-left: none; border-top: none; }

/* Hero logo glow */
.hero-logo-wrap {
  position: relative;
  text-align: center;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  width: 110%; height: 110%;
  top: -5%; left: -5%;
  background: radial-gradient(circle at center, rgba(201, 161, 74, 0.25), transparent 65%);
  filter: blur(50px);
  z-index: 0;
  animation: pulse-glow 5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1.0; transform: scale(1.05); }
}
.hero-logo {
  position: relative;
  z-index: 1;
  width: 100%; max-width: 460px;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  filter: brightness(1.1) contrast(1.1);
}

/* Floating dim-sum bao SVG */
.float-bao {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
  z-index: 0;
}
.float-bao.tl { top: 80px; left: -40px; width: 220px; transform: rotate(-8deg); }
.float-bao.br { bottom: 60px; right: -60px; width: 280px; transform: rotate(12deg); }

/* Sign-In nav button */
.nav-signin {
  padding: 8px 20px;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  color: var(--bamboo) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  transition: all 0.25s ease;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-signin:hover {
  background: linear-gradient(135deg, var(--bamboo), var(--gold));
  color: #fff !important;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 161, 74, 0.3);
  transform: translateY(-1px);
}
.nav-signin svg { width: 14px; height: 14px; }

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  background: var(--surface-solid);
  border: 1px solid var(--border-hover);
  border-radius: 999px;
  padding: 4px;
  margin-left: 16px;
}
.lang-switch select {
  background: transparent;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.05em;
}
.lang-switch select option {
  background: var(--surface);
  color: var(--text);
}

/* Tier-card chop seal accent */
.pkg .pkg-seal {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--forest), var(--forest-bright));
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Noto Sans SC', serif;
  font-size: 18px; font-weight: 800;
  transform: rotate(-3deg);
  opacity: 0.85;
  box-shadow: 0 4px 12px rgba(27, 51, 32, 0.25);
}

/* Connecting line for steps */
.steps-flow { position: relative; }
.steps-flow::before {
  content: '';
  position: absolute;
  top: 60px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.35;
  z-index: 0;
}
@media (max-width: 700px) { .steps-flow::before { display: none; } }

/* Dim-sum bowl SVG illustration */
.bowl-illustration {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  filter: drop-shadow(0 20px 40px rgba(201, 161, 74, 0.12));
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards; }
.fade-in-2 { animation: fade-up 0.8s 0.18s cubic-bezier(0.4, 0, 0.2, 1) backwards; }
.fade-in-3 { animation: fade-up 0.8s 0.36s cubic-bezier(0.4, 0, 0.2, 1) backwards; }
.fade-in-4 { animation: fade-up 0.8s 0.54s cubic-bezier(0.4, 0, 0.2, 1) backwards; }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Staggered reveal for grids */
.grid-3 .reveal:nth-child(1) { transition-delay: 0s; }
.grid-3 .reveal:nth-child(2) { transition-delay: 0.1s; }
.grid-3 .reveal:nth-child(3) { transition-delay: 0.2s; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-logo { max-width: 320px; }
}
@media (max-width: 700px) {
  .nav { padding: 12px 16px; }
  .nav-links {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; right: 0; left: 0;
    background: rgba(253, 248, 236, 0.96);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px; gap: 18px;
    box-shadow: 0 20px 40px rgba(27, 51, 32, 0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-toggle { display: block; }
  .nav-signin { justify-content: center; width: 100%; }
  .lang-switch { margin-left: 0; align-self: flex-start; }
  .brand-name { font-size: 14px; letter-spacing: 2px; }
  .brand-name small { font-size: 8px; letter-spacing: 1.5px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero { padding: 72px 0; min-height: auto; }
  .brand-mark { height: 36px; width: auto; }
  .container { padding: 0 18px; }
  .cta-banner { padding: 72px 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .serif-quote { font-size: 18px !important; padding-left: 14px !important; }
}
@media (max-width: 380px) {
  .footer-grid { grid-template-columns: 1fr; }
  .brand-name { font-size: 13px; letter-spacing: 1.5px; }
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════════════════════════ */
.legal-prose h2 {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 0.03em;
  margin-top: 40px;
  margin-bottom: 14px;
  font-weight: 700;
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 18px; }
.legal-prose ul { color: var(--text-secondary); line-height: 1.8; margin: 0 0 18px 24px; padding: 0; }
.legal-prose li { margin-bottom: 10px; }
.legal-prose strong { color: var(--text); font-weight: 700; }
.legal-prose a { color: var(--forest-bright); text-decoration: underline; text-underline-offset: 3px; }
.legal-prose a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   BRAND GALLERY (About page)
   ═══════════════════════════════════════════════════════════════ */
.brand-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.brand-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand-tile:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--border-glow);
  box-shadow: 0 16px 40px rgba(0,0,0,.30);
}
.brand-tile img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  background: #0a0a0a;
  padding: 14px;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .brand-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .brand-gallery { grid-template-columns: repeat(2, 1fr); }
  .brand-tile img { height: 200px; }
}
@media (max-width: 480px) {
  .brand-gallery { grid-template-columns: 1fr; gap: 16px; }
  .brand-tile img { height: 240px; }
}
.brand-tile-label {
  padding: 14px 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
}
.brand-tile { cursor: zoom-in; }

/* Lightbox overlay */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center; justify-content: center;
  z-index: 9999;
  padding: 24px;
  cursor: zoom-out;
  animation: lb-fade .18s ease;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 95vw; max-height: 92vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  cursor: default;
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 22px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 22px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
  z-index: 2;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
@media (max-width: 600px) {
  .lightbox-nav { width: 42px; height: 42px; font-size: 18px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}
@keyframes lb-fade { from { opacity: 0 } to { opacity: 1 } }

/* ════════════════════════════════════════════════════════════════
   VISION SECTION — editorial split with brand pillars
   ════════════════════════════════════════════════════════════════ */
.vision-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(ellipse at 12% 15%, rgba(184, 146, 61, 0.14), transparent 55%),
    radial-gradient(ellipse at 88% 85%, rgba(74, 121, 66, 0.20), transparent 55%),
    linear-gradient(180deg, #2D4A2A 0%, #1F3A1C 60%, #142711 100%);
}
.vision-section::before,
.vision-section::after {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(216, 184, 112, 0.55) 50%,
    transparent 100%);
  z-index: 1;
}
.vision-section::before { top: 0; }
.vision-section::after  { bottom: 0; }

/* Oversized 包 character as editorial backdrop */
.vision-glyph {
  position: absolute;
  font-family: 'Cormorant Garamond', 'Noto Serif SC', Georgia, serif;
  font-weight: 700;
  font-size: clamp(420px, 60vw, 720px);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 2px rgba(216, 184, 112, 0.18);
  top: 50%; right: -8%;
  transform: translateY(-50%);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.05em;
}

.vision-section > .container { position: relative; z-index: 2; }

.vision-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Copy column */
.vision-copy { max-width: 540px; }
.vision-eyebrow {
  display: inline-block !important;
  padding: 7px 16px;
  background: linear-gradient(135deg, rgba(216, 184, 112, 0.18), rgba(139, 111, 61, 0.06));
  border: 1px solid rgba(216, 184, 112, 0.45);
  border-radius: 999px;
  color: #E0C57A !important;
  letter-spacing: 0.28em;
  font-size: 10.5px;
  font-weight: 800;
  margin-bottom: 28px !important;
  text-align: left !important;
}
.vision-title {
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #FBF3DE 0%, #E5BC6E 60%, #B8923D 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* Gold hairline divider under the title */
.vision-rule {
  width: 80px;
  height: 2px;
  margin: 0 0 28px;
  background: linear-gradient(90deg, #B8923D 0%, rgba(184, 146, 61, 0) 100%);
  border-radius: 2px;
}
.vision-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(251, 243, 222, 0.85) !important;
  margin-bottom: 18px;
  max-width: 520px;
}
.vision-cta {
  margin-top: 16px;
  border-color: rgba(216, 184, 112, 0.55) !important;
  color: #E0C57A !important;
  padding: 14px 28px;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 12px;
}
.vision-cta:hover {
  border-color: #E0C57A !important;
  color: #FBF3DE !important;
  background: rgba(216, 184, 112, 0.10) !important;
}

/* Pillar cards (right column) */
.vision-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vision-card {
  position: relative;
  padding: 26px 28px 24px 70px;
  background: linear-gradient(135deg,
    rgba(251, 243, 222, 0.06) 0%,
    rgba(251, 243, 222, 0.02) 100%);
  border: 1px solid rgba(216, 184, 112, 0.20);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, background 0.35s;
}
.vision-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent 0%, rgba(216, 184, 112, 0.65) 50%, transparent 100%);
  border-radius: 3px;
  transform: scaleY(0.4);
  transition: transform 0.35s;
}
.vision-card:hover {
  transform: translateX(6px);
  border-color: rgba(216, 184, 112, 0.50);
  background: linear-gradient(135deg,
    rgba(251, 243, 222, 0.09) 0%,
    rgba(251, 243, 222, 0.04) 100%);
}
.vision-card:hover::before { transform: scaleY(1); }

.vision-card-num {
  position: absolute;
  top: 22px; left: 22px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  font-style: italic;
  background: linear-gradient(135deg, #E5BC6E, #B8923D);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
}
.vision-card h4 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #E0C57A !important;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.vision-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(251, 243, 222, 0.74) !important;
  margin: 0;
}

@media (max-width: 900px) {
  .vision-section { padding: 80px 0; }
  .vision-grid { grid-template-columns: 1fr; gap: 48px; }
  .vision-glyph { font-size: clamp(320px, 80vw, 480px); right: -20%; opacity: 0.6; }
  .vision-copy { max-width: 100%; }
}

/* ============================================================
   HOMEPAGE DESIGN REFRESH — shared with CRM auth surface
   ============================================================ */
:root {
  --forest: #1F3A1C;
  --forest-bright: #2D4A2A;
  --forest-glow: #4A7942;
  --bamboo: #6B5419;
  --bamboo-bright: #8B6F26;
  --bamboo-glow: #B8923D;
  --gold: #B8923D;
  --gold-soft: #E0C57A;
  --gold-bright: #F3DFA8;
  --bg: #FBF3DE;
  --surface: rgba(255, 251, 240, 0.86);
  --surface-solid: #F0E2BF;
  --surface-2: #E6D49E;
  --border: rgba(45, 74, 42, 0.16);
  --border-hover: rgba(45, 74, 42, 0.32);
  --border-glow: rgba(184, 146, 61, 0.42);
  --text: #1F2F1C;
  --text-secondary: #43543C;
  --text-muted: #718067;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --shadow: 0 12px 34px rgba(45, 74, 42, 0.10);
  --shadow-lg: 0 28px 70px rgba(45, 74, 42, 0.18);
}

body {
  background:
    linear-gradient(rgba(45, 74, 42, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 74, 42, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: 42px 42px;
}

h1, h2, h3, h4 { letter-spacing: 0; }

.site-header {
  background: rgba(255, 251, 240, 0.88);
  border-bottom-color: rgba(45, 74, 42, 0.12);
}

.nav {
  min-height: 72px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand-mark {
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(45, 74, 42, 0.14);
}

.nav-links { gap: 30px; }

.nav-links a,
.brand-name,
.brand-name small,
.section-eyebrow,
.stat-label {
  letter-spacing: 0.08em;
}

.nav-signin,
.lang-switch {
  background: rgba(255, 251, 240, 0.68);
  box-shadow: 0 8px 22px rgba(45, 74, 42, 0.06);
}

.hero {
  min-height: calc(100vh - 72px);
  padding: 86px 0 72px;
  background:
    linear-gradient(115deg, rgba(251, 243, 222, 0.96) 0%, rgba(247, 235, 199, 0.86) 48%, rgba(219, 220, 188, 0.72) 100%),
    var(--bg);
}

.hero::before {
  inset: 0;
  width: auto;
  height: auto;
  top: 0;
  right: 0;
  background:
    linear-gradient(rgba(184, 146, 61, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 58, 28, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  filter: none;
  animation: none;
  opacity: 0.55;
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
}

.hero::after { display: none; }

.hero-grid {
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: clamp(42px, 5vw, 72px);
}

.hero-copy { max-width: 650px; }

.hero h1 {
  font-size: clamp(52px, 5.8vw, 84px);
  line-height: 1;
  margin-bottom: 22px;
  max-width: 680px;
}

.hero h1 .gold-text {
  background: linear-gradient(135deg, #7B611F 0%, #B8923D 52%, #5F4B18 100%);
  -webkit-background-clip: text;
          background-clip: text;
}

.hero .tagline-cn {
  color: var(--bamboo-bright);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.08em;
}

.hero .tagline-en {
  color: var(--forest-bright);
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}

.hero p.lead {
  max-width: 590px;
  color: #5B6B52;
  font-size: 17px;
}

.halal-badge {
  background: rgba(255, 251, 240, 0.72);
  border-color: rgba(184, 146, 61, 0.38);
  box-shadow: 0 8px 24px rgba(45, 74, 42, 0.07);
  color: #7B611F;
  letter-spacing: 0.10em;
}

.btn {
  border-radius: 12px;
  min-height: 52px;
  letter-spacing: 0.08em;
}

.btn-primary {
  background: linear-gradient(135deg, #1F3A1C 0%, #2D4A2A 58%, #4A7942 100%);
  box-shadow: 0 16px 34px rgba(45, 74, 42, 0.24);
}

.btn-ghost {
  background: rgba(255, 251, 240, 0.52);
  border-color: rgba(45, 74, 42, 0.18);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 590px;
  margin-top: 28px;
  border: 1px solid rgba(45, 74, 42, 0.14);
  border-radius: 16px;
  background: rgba(255, 251, 240, 0.58);
  box-shadow: 0 18px 44px rgba(45, 74, 42, 0.08);
  overflow: hidden;
}

.hero-cta.fade-in-4,
.hero-proof.fade-in-4 {
  opacity: 1;
  transform: none;
  animation: none;
}

.hero-proof > div {
  padding: 16px 18px;
  border-right: 1px solid rgba(45, 74, 42, 0.12);
}

.hero-proof > div:last-child { border-right: 0; }

.hero-proof strong {
  display: block;
  color: var(--forest);
  font-size: 22px;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-proof span {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-showcase {
  justify-self: end;
  width: min(100%, 560px);
  position: relative;
  padding: 18px;
  border: 1px solid rgba(216, 184, 112, 0.38);
  border-radius: 26px;
  background:
    linear-gradient(160deg, rgba(31, 58, 28, 0.98), rgba(19, 34, 24, 0.98));
  box-shadow:
    0 32px 80px rgba(31, 58, 28, 0.28),
    0 0 0 1px rgba(255, 251, 240, 0.08) inset;
}

.hero-showcase::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(216, 184, 112, 0.22);
  border-radius: 18px;
  pointer-events: none;
  z-index: 2;
}

.hero-showcase .hero-logo-wrap {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 251, 240, 0.08);
  box-shadow: none;
}

.hero-showcase .hero-logo-wrap::before {
  display: none;
}

.hero-showcase .hero-logo {
  max-width: none;
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
  border-radius: 16px;
  border-color: rgba(216, 184, 112, 0.42);
  filter: none;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.showcase-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 8px 2px;
  color: rgba(251, 243, 222, 0.74);
}

.showcase-note span {
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.showcase-note strong {
  color: #FFF7E4;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

.brush-divider {
  width: 420px;
  max-width: calc(100% - 48px);
  margin-top: -14px;
  margin-bottom: -14px;
  opacity: 0.7;
}

.section { padding: 104px 0; }

.section-title {
  font-size: clamp(36px, 4.4vw, 56px);
  letter-spacing: 0;
}

.section-subtitle {
  max-width: 680px;
  margin-bottom: 54px;
  color: #58684F;
}

.card,
.step,
.pkg,
.split-section,
.brand-tile {
  background: rgba(255, 251, 240, 0.78);
  border-color: rgba(45, 74, 42, 0.14);
  box-shadow: 0 14px 34px rgba(45, 74, 42, 0.07);
}

.card:hover,
.step:hover,
.pkg:hover,
.brand-tile:hover {
  transform: translateY(-4px);
}

.stats {
  gap: 0;
  background: linear-gradient(135deg, rgba(255, 251, 240, 0.78), rgba(240, 226, 191, 0.62));
  border: 1px solid rgba(45, 74, 42, 0.14);
  border-radius: 22px;
  box-shadow: 0 20px 54px rgba(45, 74, 42, 0.10);
  overflow: hidden;
}

.stats > div {
  padding: 34px 22px;
  border-right: 1px solid rgba(45, 74, 42, 0.12);
}

.stats > div:last-child { border-right: 0; }

.stat-number {
  background: linear-gradient(135deg, #1F3A1C 0%, #8B6F26 100%);
  -webkit-background-clip: text;
          background-clip: text;
  font-size: clamp(42px, 4.4vw, 58px);
}

.cta-banner {
  text-align: left;
  background:
    linear-gradient(135deg, #203B1D 0%, #162916 58%, #0F1F11 100%);
  color: #FBF3DE;
  border-top-color: rgba(216, 184, 112, 0.24);
  border-bottom: 0;
}

.cta-banner::before {
  background:
    linear-gradient(rgba(216, 184, 112, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 184, 112, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.8;
}

.cta-banner .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  position: relative;
}

.cta-banner h2 {
  color: #FFF7E4;
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(251, 243, 222, 0.78);
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cta-banner .btn-ghost {
  color: #FFF7E4;
  border-color: rgba(216, 184, 112, 0.44);
  background: rgba(255, 251, 240, 0.06);
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-showcase {
    justify-self: start;
    width: min(100%, 620px);
  }

  .cta-banner .container {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .nav { min-height: 64px; }
  .hero {
    min-height: auto;
    padding: 64px 0 54px;
  }

  .hero-grid {
    gap: 34px;
    text-align: center;
  }

  .hero h1 {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(30px, 8vw, 32px);
    line-height: 1.08;
    text-wrap: auto;
  }

  .hero h1 .gold-text {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero p.lead {
    max-width: 320px;
    font-size: 16px;
  }

  .hero p.lead,
  .hero-copy,
  .hero-proof {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-proof > div {
    border-right: 0;
    border-bottom: 1px solid rgba(45, 74, 42, 0.12);
  }

  .hero-proof > div:last-child { border-bottom: 0; }

  .hero-showcase {
    justify-self: center;
    padding: 12px;
    border-radius: 20px;
  }

  .showcase-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .showcase-note strong { text-align: left; }
  .stats { grid-template-columns: 1fr; }
  .stats > div { border-right: 0; border-bottom: 1px solid rgba(45, 74, 42, 0.12); }
  .stats > div:last-child { border-bottom: 0; }
}

/* ============================================================
   WARMER PALETTE PASS — reduce green dominance
   ============================================================ */
:root {
  --forest: #29261F;
  --forest-bright: #3B3528;
  --forest-glow: #746A50;
  --bamboo: #73561C;
  --bamboo-bright: #96712A;
  --bamboo-glow: #C39A42;
  --gold: #C39A42;
  --gold-soft: #E9CF8F;
  --gold-bright: #F5E3B4;
  --bg: #FBF2DC;
  --surface: rgba(255, 251, 240, 0.88);
  --surface-solid: #F1E1BB;
  --surface-2: #E7D09C;
  --border: rgba(89, 72, 42, 0.16);
  --border-hover: rgba(89, 72, 42, 0.34);
  --border-glow: rgba(195, 154, 66, 0.44);
  --text: #26231C;
  --text-secondary: #5F5747;
  --text-muted: #827660;
}

body {
  background:
    linear-gradient(rgba(117, 86, 28, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 86, 28, 0.018) 1px, transparent 1px),
    var(--bg);
}

.hero {
  background:
    linear-gradient(115deg, rgba(251, 242, 220, 0.98) 0%, rgba(248, 234, 194, 0.88) 48%, rgba(229, 214, 171, 0.74) 100%),
    var(--bg);
}

.hero::before {
  background:
    linear-gradient(rgba(195, 154, 66, 0.058) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 86, 28, 0.034) 1px, transparent 1px);
}

.hero .tagline-en,
.section-eyebrow {
  color: #6D6047;
}

.hero p.lead,
.section-subtitle {
  color: #665E4E;
}

.btn-primary {
  background: linear-gradient(135deg, #72551C 0%, #A97F2D 56%, #D2A84D 100%);
  color: #FFF9EA;
  box-shadow: 0 16px 34px rgba(117, 86, 28, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #876720 0%, #B98E34 56%, #DDB65B 100%);
  color: #FFF9EA;
}

.hero-showcase,
.section-alt,
.vision-section,
.cta-banner,
footer {
  background:
    radial-gradient(ellipse at 14% 16%, rgba(195, 154, 66, 0.12), transparent 52%),
    linear-gradient(145deg, #28241D 0%, #1D1A15 58%, #14120F 100%);
}

.hero-showcase {
  box-shadow:
    0 32px 80px rgba(31, 27, 20, 0.26),
    0 0 0 1px rgba(255, 251, 240, 0.08) inset;
}

.hero-proof {
  border-color: rgba(117, 86, 28, 0.16);
  box-shadow: 0 18px 44px rgba(117, 86, 28, 0.08);
}

.hero-proof > div,
.stats > div {
  border-color: rgba(117, 86, 28, 0.13);
}

.hero-proof strong,
.stat-number {
  color: #7B271F;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.card,
.step,
.pkg,
.split-section,
.brand-tile,
.stats {
  border-color: rgba(117, 86, 28, 0.15);
  box-shadow: 0 14px 34px rgba(117, 86, 28, 0.07);
}

.nav-links a:hover,
.nav-links a.active {
  color: #2A2720;
}

.vision-card {
  border-color: rgba(216, 184, 112, 0.22);
  background: linear-gradient(135deg, rgba(255, 251, 240, 0.07), rgba(195, 154, 66, 0.035));
}

.vision-glyph {
  -webkit-text-stroke-color: rgba(216, 184, 112, 0.15);
}

/* ============================================================
   COMPACT SPACING PASS — tighten vertical rhythm and grid gaps
   Final block wins via cascade. Reduces excessive whitespace
   without changing layout structure.
   ============================================================ */

/* Section vertical padding: 120px -> fluid 64-88px */
.section { padding: clamp(56px, 7vw, 88px) 0 !important; }

/* Hero: 100/80 -> fluid 56-80 */
.hero { padding: clamp(48px, 6vw, 80px) 0 clamp(40px, 5vw, 64px) !important; }
.hero-grid { gap: clamp(32px, 4vw, 48px) !important; }

/* Section heading rhythm */
.section-title { margin-bottom: 12px !important; }
.section-subtitle { margin-bottom: clamp(28px, 3vw, 40px) !important; }
.section-eyebrow { margin-bottom: 10px !important; }

/* Hero typography rhythm */
.hero h1 { margin-bottom: 14px !important; }
.hero p.lead { margin-bottom: 24px !important; }
.hero .tagline-cn { margin-bottom: 8px !important; }
.hero .tagline-en { margin-bottom: 22px !important; }
.hero-logo-wrap { margin-bottom: 20px !important; }

/* Two-column blocks */
.two-col { gap: clamp(36px, 4.5vw, 56px) !important; }
.two-col h2 { margin-bottom: 14px !important; }
.two-col p { margin-bottom: 12px !important; }

/* Card grids */
.card-grid,
.cards,
.feature-grid,
.pkg-grid,
.contact-grid { gap: clamp(18px, 2vw, 24px) !important; }

/* Footer */
.site-footer { padding: clamp(48px, 5vw, 72px) 0 28px !important; }
.footer-grid { gap: clamp(28px, 3vw, 40px) !important; margin-bottom: clamp(28px, 3vw, 40px) !important; }

/* CTA banner */
.cta-banner h2 { margin-bottom: 12px !important; }
.cta-banner p { margin-bottom: 24px !important; }

/* Form rhythm */
.form-row { gap: 14px !important; margin-bottom: 14px !important; }
.field { margin-bottom: 14px !important; }

/* Legal/long-prose pages */
.legal-prose p { margin-bottom: 14px !important; }

/* Mobile: ensure the override holds for the 1099 breakpoint too */
@media (max-width: 768px) {
  .section { padding: clamp(44px, 8vw, 60px) 0 !important; }
  .hero { padding: clamp(40px, 8vw, 60px) 0 !important; }
}

/* ============================================================
   HERO LOGO — show full image, consistent green frame on every page
   Fixes:
   1. Home hero was cropping the logo via aspect-ratio + object-fit cover.
   2. Home hero had lost the dark-green frame the other pages have.
   ============================================================ */

/* Universal: never crop the brand mark */
.hero-logo {
  width: 100% !important;
  max-width: 440px !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  filter: none !important;
}

/* Universal frame — matches the green panel on about/investment/etc. */
.hero-logo-wrap {
  padding: 28px !important;
  border-radius: var(--radius-xl, 22px) !important;
  background: linear-gradient(160deg, #243D26 0%, #1A2E1C 60%, #132218 100%) !important;
  box-shadow:
    0 32px 80px rgba(27, 51, 32, 0.28),
    inset 0 1px 0 rgba(216, 184, 112, 0.15) !important;
  overflow: visible !important;
}

/* Home hero specifically (hero-showcase wrapper): same frame as other pages,
   but keep the showcase-note caption visible underneath without cropping. */
.hero-showcase .hero-logo-wrap {
  padding: 24px !important;
  background: linear-gradient(160deg, #243D26 0%, #1A2E1C 60%, #132218 100%) !important;
  box-shadow:
    0 32px 80px rgba(27, 51, 32, 0.28),
    inset 0 1px 0 rgba(216, 184, 112, 0.15) !important;
}

.hero-showcase .hero-logo-wrap::before {
  display: block !important;
  content: '';
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at center, rgba(201, 161, 74, 0.22), transparent 65%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
  animation: pulse-glow 5s ease-in-out infinite;
}

.hero-showcase .hero-logo {
  position: relative !important;
  z-index: 1 !important;
  max-width: 100% !important;
  border-radius: var(--radius-lg, 16px) !important;
  border: 2px solid rgba(216, 184, 112, 0.32) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.30) !important;
  background: #FBF2DC;
}

/* Caption block sits below the framed logo, doesn't overlap it */
.showcase-note {
  padding: 14px 4px 0 !important;
}

/* ============================================================
   HERO ART — illustrated bamboo-steamer scene
   Replaces the framed product-label image across pages.
   ============================================================ */
.hero-art {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.hero-art::before {
  content: '';
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(229, 200, 121, 0.45), transparent 60%),
    radial-gradient(circle at 70% 75%, rgba(62, 92, 42, 0.18), transparent 65%),
    radial-gradient(circle at center, rgba(251, 242, 220, 0.5), rgba(244, 229, 190, 0.0) 70%);
  filter: blur(6px);
  z-index: 0;
}
.hero-art::after {
  content: '';
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px dashed rgba(195, 154, 66, 0.35);
  z-index: 0;
  animation: hero-art-rotate 60s linear infinite;
}
@keyframes hero-art-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-art svg.hero-art-svg {
  position: relative;
  z-index: 1;
  width: 92%;
  height: 92%;
  filter: drop-shadow(0 30px 60px rgba(60, 44, 18, 0.20));
}
.hero-art .hero-art-seal {
  position: absolute;
  z-index: 2;
  top: 6%;
  right: 6%;
  width: 22%;
  max-width: 110px;
  aspect-ratio: 1 / 1;
}
.hero-art .hero-art-corner {
  position: absolute;
  z-index: 2;
  bottom: 4%;
  left: 4%;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold, #C39A42);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-art .hero-art-corner::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold, #C39A42);
}
.hero-art .hero-art-cn {
  position: absolute;
  z-index: 2;
  bottom: 8%;
  right: 4%;
  writing-mode: vertical-rl;
  font-family: 'Cormorant Garamond', 'Source Han Serif SC', 'Noto Serif SC', serif;
  font-size: 14px;
  letter-spacing: 0.34em;
  color: rgba(123, 96, 38, 0.78);
}

/* dark sections: tone the illustration for cream-on-dark */
.section-alt .hero-art::before,
.hero[data-tone="dark"] .hero-art::before {
  background:
    radial-gradient(circle at 32% 28%, rgba(229, 200, 121, 0.20), transparent 60%),
    radial-gradient(circle at center, rgba(35, 51, 30, 0.6), transparent 70%);
}
.section-alt .hero-art-corner,
.section-alt .hero-art-cn {
  color: rgba(229, 200, 121, 0.85);
}

@media (max-width: 768px) {
  .hero-art { max-width: 360px; }
  .hero-art .hero-art-corner { font-size: 11px; }
  .hero-art .hero-art-cn { font-size: 12px; }
}

/* ============================================================
   HERO SIZE — generous, full-presence hero on every page
   ============================================================ */
@media (min-width: 980px) {
  .hero {
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    /* taller, with content sitting near the top of the band */
    padding: clamp(56px, 7vh, 96px) 0 clamp(56px, 7vh, 96px) !important;
    display: block !important;
    align-items: flex-start !important;
  }
  .hero-grid {
    align-items: center !important;
    gap: clamp(40px, 5vw, 72px) !important;
  }
  .hero h1 {
    font-size: clamp(56px, 7vw, 92px) !important;
    line-height: 1.0 !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.03em !important;
  }
  .hero .tagline-cn { font-size: 24px !important; margin-bottom: 10px !important; }
  .hero .tagline-en { font-size: 12px !important; margin-bottom: 24px !important; }
  .hero p.lead {
    font-size: 18px !important;
    line-height: 1.65 !important;
    margin-bottom: 32px !important;
    max-width: 560px;
  }
  .hero-cta { margin-bottom: 28px !important; }
  .hero .halal-badge { margin-bottom: 26px !important; }
  .hero-art {
    max-width: 600px !important;
    margin-top: 0 !important;
  }
  .hero-stats,
  .hero-pillars,
  .hero-meta { margin-top: 12px !important; }
}

/* Short viewports: scale down so we don't blow past the fold */
@media (min-width: 980px) and (max-height: 820px) {
  .hero { padding: clamp(36px, 5vh, 60px) 0 !important; }
  .hero h1 { font-size: clamp(44px, 5.4vw, 70px) !important; }
  .hero p.lead { font-size: 16px !important; margin-bottom: 22px !important; }
  .hero-art { max-width: 480px !important; }
}

/* ============================================================
   HERO ART — page-specific palette/icon tweaks share base styles
   ============================================================ */
.hero-art--coin .hero-art-svg,
.hero-art--scroll .hero-art-svg,
.hero-art--wallet .hero-art-svg { width: 92%; height: 92%; }

/* ============================================================
   FOOTER BRAND BLOCK — show the full logo, fill the empty space
   ============================================================ */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.footer-brand-link {
  display: inline-block;
  line-height: 0;
}
.footer-brand-mark {
  display: block;
  width: 100%;
  max-width: 140px;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(229, 200, 121, 0.32);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(229, 200, 121, 0.18);
  background: rgba(251, 242, 220, 0.04);
}
.footer-brand-tagline {
  margin: 0;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(253, 248, 236, 0.82);
  letter-spacing: 0.01em;
  max-width: 220px;
}
@media (max-width: 980px) {
  .footer-brand { align-items: flex-start; }
  .footer-brand-mark { max-width: 120px; }
  .footer-brand-tagline { font-size: 15px; }
}

/* Tighten footer overall height so it doesn't dwarf the page */
footer {
  padding: clamp(40px, 5vw, 64px) 0 24px !important;
}
.footer-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr !important;
  gap: clamp(24px, 3vw, 36px) !important;
  margin-bottom: clamp(24px, 3vw, 36px) !important;
}
.footer-grid h5 { margin-bottom: 14px !important; }
.footer-grid li,
.footer-grid li a { font-size: 13.5px !important; }
.footer-brand { gap: 12px !important; }
.footer-bottom { padding-top: 22px !important; }

/* ============================================================
   NAV SIGN-IN — definitive redesign
   Dark forest pill, cream text, refined arrow, gold inner edge.
   Matches primary CTA family; reads as the most important nav item.
   ============================================================ */
.nav-signin {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 22px 10px 18px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #1F2F1C 0%, #2B3F26 60%, #1F2F1C 100%) !important;
  box-shadow:
    0 10px 22px rgba(31, 47, 28, 0.28),
    inset 0 1px 0 rgba(229, 200, 121, 0.32),
    inset 0 0 0 1px rgba(229, 200, 121, 0.18) !important;
  color: #F6E8C4 !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  overflow: hidden !important;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease !important;
}

/* tiny gold dot before the text — subtle status-light feel */
.nav-signin::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E5C879 0%, #C39A42 100%);
  box-shadow: 0 0 8px rgba(229, 200, 121, 0.65);
  flex-shrink: 0;
}

/* gold sweep highlight on hover */
.nav-signin::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 38%, rgba(229, 200, 121, 0.22) 50%, transparent 62%);
  transform: translateX(-110%);
  transition: transform .7s ease;
  pointer-events: none;
}

.nav-signin svg {
  width: 14px !important;
  height: 14px !important;
  stroke: #E5C879 !important;
  stroke-width: 2.2 !important;
  transition: transform .25s ease !important;
}

.nav-signin span,
.nav-signin {
  color: #F6E8C4 !important;
}

.nav-signin:hover {
  background: linear-gradient(135deg, #2B3F26 0%, #3A5230 60%, #2B3F26 100%) !important;
  transform: translateY(-1px) !important;
  box-shadow:
    0 14px 28px rgba(31, 47, 28, 0.36),
    inset 0 1px 0 rgba(229, 200, 121, 0.42),
    inset 0 0 0 1px rgba(229, 200, 121, 0.32) !important;
  color: #FFF7E0 !important;
}
.nav-signin:hover::after { transform: translateX(110%); }
.nav-signin:hover svg { transform: translateX(2px); }

.nav-signin:focus-visible {
  outline: 2px solid var(--gold, #C39A42);
  outline-offset: 3px;
}

/* override the earlier cream-tinted pass that flattened it */
.nav-signin {
  background: linear-gradient(135deg, #1F2F1C 0%, #2B3F26 60%, #1F2F1C 100%) !important;
}

/* mobile: full-width inside nav drawer keeps the same treatment */
@media (max-width: 980px) {
  .nav-signin {
    justify-content: center !important;
    padding: 12px 22px !important;
  }
}


