/* ===== CSS Variables ===== */
:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f5f5f5;
  --color-text: #1a1a1a;
  --color-text-secondary: #888888;
  --color-accent: #8b7355;
  --color-border: #e0e0e0;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

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

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-text);
}

.nav-links {
  display: flex;
  gap: 48px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-text);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text);
}

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

/* ===== Hero ===== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-content { z-index: 1; }

.hero-title {
  font-size: 72px;
  font-weight: 200;
  letter-spacing: 0.12em;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--color-text-secondary);
  letter-spacing: 0.24em;
  margin-bottom: 48px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 48px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  border: 1px solid var(--color-text);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.btn:hover {
  color: var(--color-bg);
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-dark {
  background: var(--color-text);
  color: var(--color-bg);
}

.btn-dark::before {
  background: var(--color-bg);
}

.btn-dark:hover {
  color: var(--color-text);
  border-color: var(--color-text);
}

.btn-dark:hover::before {
  transform: scaleX(1);
}

/* ===== Scroll Arrow ===== */
.scroll-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  cursor: pointer;
  animation: float 2s ease-in-out infinite;
}

.scroll-arrow::before,
.scroll-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 1px;
  height: 12px;
  background: var(--color-text-secondary);
}

.scroll-arrow::before {
  left: 8px;
  transform: rotate(-45deg);
}

.scroll-arrow::after {
  right: 8px;
  transform: rotate(45deg);
}

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

/* ===== Stats ===== */
.stats {
  padding: 140px 0;
  background: var(--color-bg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
}

.stat-number {
  font-size: 56px;
  font-weight: 200;
  letter-spacing: 0.04em;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-secondary);
  letter-spacing: 0.08em;
}

/* ===== Section ===== */
.section {
  padding: 140px 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 100px;
}

.section-title {
  font-size: 40px;
  font-weight: 200;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-secondary);
  letter-spacing: 0.08em;
  max-width: 480px;
  margin: 0 auto;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 120px 0;
  background: var(--color-bg-alt);
  text-align: center;
}

.cta-text {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 36px;
}

/* ===== Feature Rows ===== */
.feature-row {
  display: flex;
  align-items: center;
  gap: 100px;
  padding: 120px 0;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 0 0 40%;
}

.feature-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 32px;
  font-weight: 200;
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin-bottom: 24px;
}

.feature-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.feature-visual {
  flex: 0 0 50%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Abstract geometric placeholders */
.geo-grid {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, transparent 49.5%, var(--color-border) 49.5%, var(--color-border) 50.5%, transparent 50.5%),
    linear-gradient(225deg, transparent 49.5%, var(--color-border) 49.5%, var(--color-border) 50.5%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, var(--color-border) 49.5%, var(--color-border) 50.5%, transparent 50.5%),
    linear-gradient(90deg, transparent 49.5%, var(--color-border) 49.5%, var(--color-border) 50.5%, transparent 50.5%);
  background-size: 60px 60px;
  opacity: 0.4;
}

.geo-circles {
  width: 100%;
  height: 100%;
  position: relative;
}

.geo-circles::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
}

.geo-circles::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: var(--color-bg-alt);
  border-radius: 50%;
}

.geo-dots {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--color-border) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.6;
}

.geo-diagonal {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    var(--color-bg-alt) 20px,
    var(--color-bg-alt) 22px
  );
  opacity: 0.8;
}

/* ===== About Page ===== */
.about-hero {
  padding: 200px 0 80px;
}

.about-body {
  max-width: 600px;
}

.about-body .section-title {
  margin-bottom: 32px;
}

.about-body p {
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
}

.contact-section {
  padding: 100px 0;
  background: var(--color-bg-alt);
}

.contact-item {
  margin-bottom: 48px;
}

.contact-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-value {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

/* ===== Footer ===== */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--color-border);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

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

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== Page Header (shared for features/about) ===== */
.page-header {
  padding: 200px 0 60px;
  text-align: center;
}

.page-header .section-title {
  margin-bottom: 20px;
}

/* ===== Hero Particles Canvas ===== */
#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ===== Glow Orbs ===== */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.glow-orb--gold {
  width: 500px;
  height: 500px;
  background: #c9a96e;
  top: -150px;
  right: -100px;
}

.glow-orb--warm {
  width: 400px;
  height: 400px;
  background: #d4a574;
  bottom: -100px;
  left: -80px;
}

.glow-orb--cool {
  width: 450px;
  height: 450px;
  background: #b8c5d6;
  top: 50%;
  right: -120px;
}

/* ===== Section Divider ===== */
.section-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.section-divider--flip svg {
  transform: rotate(180deg);
}

/* ===== Background Accent Strip ===== */
.bg-strip {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-strip--top {
  top: 0;
}

.bg-strip--bottom {
  bottom: 0;
}

.bg-strip::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

/* ===== Benefit Cards (Home) ===== */
.benefits {
  padding: 140px 0;
  position: relative;
  background: var(--color-bg);
}

.benefits .section-header {
  margin-bottom: 80px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.benefit-card {
  padding: 48px 36px;
  border: 1px solid transparent;
  background: var(--color-bg-alt);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
  background: var(--color-bg);
  border-color: var(--color-border);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(139, 115, 85, 0.08);
  color: var(--color-accent);
  font-size: 20px;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: var(--color-text);
}

.benefit-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* ===== Brand Promise Decoration ===== */
.brand-section {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}

.brand-section .container {
  position: relative;
  z-index: 1;
}

.brand-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.brand-ring::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 50%;
}

/* ===== Feature Visuals Enhanced ===== */
.visual-shop {
  width: 100%;
  height: 100%;
  position: relative;
  background:
    linear-gradient(0deg, rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 30px 30px;
}

.visual-shop::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  width: 60%;
  height: 55%;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(139,115,85,0.06) 0%, transparent 40%);
}

.visual-shop::after {
  content: '';
  position: absolute;
  top: 38%;
  left: 28%;
  width: 44%;
  height: 1px;
  background: var(--color-border);
  box-shadow: 0 16px 0 var(--color-border), 0 32px 0 var(--color-border), 0 48px 0 var(--color-border);
  opacity: 0.6;
}

.visual-live {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-live::before {
  content: '';
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  position: relative;
}

.visual-live::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(139,115,85,0.08) 0%, transparent 70%);
  border: 1px solid rgba(139,115,85,0.2);
}

.visual-live-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #e74c3c;
  border-radius: 50%;
  animation: livePulse 1.8s ease-in-out infinite;
  z-index: 1;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.5); }
  50% { box-shadow: 0 0 0 20px rgba(231, 76, 60, 0); }
}

.visual-chat {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-chat::before,
.visual-chat::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 140px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(0,0,0,0.01);
}

.visual-chat::before {
  top: 25%;
  left: 20%;
}

.visual-chat::after {
  bottom: 25%;
  right: 20%;
  width: 160px;
  height: 120px;
  border-color: var(--color-accent);
  opacity: 0.4;
}

.visual-chat-dots {
  position: absolute;
  top: calc(25% + 24px);
  left: calc(20% + 16px);
  display: flex;
  gap: 6px;
}

.visual-chat-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-border);
}

.visual-chat-dots span:first-child {
  background: var(--color-accent);
}

.visual-payment {
  width: 100%;
  height: 100%;
  position: relative;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(0,0,0,0.03) 39px,
      rgba(0,0,0,0.03) 40px
    );
}

.visual-payment::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 120px;
  border: 1px solid var(--color-accent);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(139,115,85,0.06), transparent);
  opacity: 0.6;
}

.visual-payment::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 60px;
  height: 1px;
  background: var(--color-text);
  opacity: 0.2;
  box-shadow: 0 12px 0 rgba(0,0,0,0.15), 0 24px 0 rgba(0,0,0,0.1);
}

.visual-marketing {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.visual-marketing::before,
.visual-marketing::after {
  content: '';
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
}

.visual-marketing::before {
  border: 1px solid var(--color-border);
  background: radial-gradient(circle at 40% 40%, rgba(139,115,85,0.08), transparent);
}

.visual-marketing::after {
  border: 1px solid var(--color-accent);
  opacity: 0.5;
  width: 130px;
  height: 130px;
}

.promo-tag {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border: 1px solid var(--color-accent);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  white-space: nowrap;
  z-index: 1;
}

/* ===== About Page: Timeline ===== */
.timeline-section {
  padding: 120px 0;
  background: var(--color-bg-alt);
}

.timeline {
  max-width: 800px;
  margin: 80px auto 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-border);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 40px);
  text-align: right;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 40px);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  top: 6px;
  z-index: 1;
}

.timeline-year {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.timeline-title {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.7;
  letter-spacing: 0.03em;
}

/* ===== About Page: Values ===== */
.values-section {
  padding: 140px 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 80px;
  text-align: center;
}

.value-card {
  padding: 40px 20px;
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(139, 115, 85, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-accent);
}

.value-card h3 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: var(--color-text);
}

.value-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* ===== About Page: Map/Stats Bar ===== */
.info-bar {
  padding: 80px 0;
  background: var(--color-text);
  color: var(--color-bg);
  text-align: center;
}

.info-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.info-bar-num {
  font-size: 36px;
  font-weight: 200;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.info-bar-label {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  opacity: 0.6;
}

/* ===== Feature Page: Icon Row ===== */
.icon-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.icon-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* ===== Decorative Dots Pattern ===== */
.dots-pattern {
  position: absolute;
  pointer-events: none;
  opacity: 0.3;
}

.dots-pattern--right {
  right: -60px;
  top: 20%;
  width: 100px;
  height: 200px;
  background: radial-gradient(circle, var(--color-border) 1px, transparent 1px);
  background-size: 16px 16px;
}

.dots-pattern--left {
  left: -40px;
  bottom: 15%;
  width: 80px;
  height: 160px;
  background: radial-gradient(circle, var(--color-border) 1px, transparent 1px);
  background-size: 14px 14px;
}

/* ===== CTA with background accent ===== */
.cta-enhanced {
  position: relative;
  overflow: hidden;
}

.cta-enhanced::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,115,85,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-enhanced::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,115,85,0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== Hero Background Texture ===== */
.hero {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(139,115,85,0.03) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(139,115,85,0.02) 0%, transparent 50%),
    var(--color-bg);
}

/* ===== ===== Mobile Updates ===== ===== */

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .hero-title {
    font-size: 40px;
    letter-spacing: 0.08em;
  }

  .hero-subtitle {
    font-size: 15px;
    letter-spacing: 0.16em;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stat-number {
    font-size: 42px;
  }

  .section-title {
    font-size: 28px;
  }

  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    gap: 48px;
    padding: 60px 0;
  }

  .feature-text {
    flex: none;
    width: 100%;
  }

  .feature-visual {
    flex: none;
    width: 100%;
    height: 240px;
  }

  .nav-links {
    gap: 24px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .footer .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .section {
    padding: 80px 0;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-text {
    font-size: 18px;
  }

  .page-header {
    padding: 140px 0 40px;
  }

  .about-hero {
    padding: 140px 0 40px;
  }

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

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

  .info-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 48px;
    padding-right: 0;
    text-align: left;
  }

  .timeline-dot {
    left: 20px;
  }

  .brand-section {
    padding: 100px 0;
  }

  .brand-ring {
    width: 300px;
    height: 300px;
  }

  .benefits {
    padding: 80px 0;
  }

  .glow-orb--gold {
    width: 300px;
    height: 300px;
  }

  .glow-orb--warm {
    width: 250px;
    height: 250px;
  }
}
