/* ============================================
   Chill Flow - Brand Stylesheet
   设计哲学：大留白 + 呼吸式动效 + 手作笔触
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* 颜色 —— 从 Logo 提取 */
  --sage: #9CAE93;          /* 主色 鼠尾草绿 */
  --sage-dark: #7d906f;
  --sage-deep: #5d6f52;
  --cream: #F5F1E8;         /* 奶白 */
  --cream-warm: #EFE7D5;
  --cocoa: #8B5A3C;         /* 可可棕 */
  --cocoa-deep: #6b4226;
  --sky: #B8D4E3;           /* 天空蓝 */
  --sand: #E8DCC4;          /* 沙色 */
  --ink: #2a3329;           /* 深墨绿（代替纯黑）*/
  --ink-soft: #4a5547;

  /* 字体 */
  --font-script: 'Caveat', cursive;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-serif: 'Noto Serif SC', 'Songti SC', serif;

  /* 间距节奏 */
  --gap-xs: 8px;
  --gap-s: 16px;
  --gap-m: 32px;
  --gap-l: 64px;
  --gap-xl: 120px;
  --gap-xxl: 180px;

  /* 动效曲线 —— 像水一样 */
  --ease-water: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-float: cubic-bezier(0.4, 0, 0.2, 1);

  /* 容器 */
  --max-w: 1280px;
}

/* Caveat 只用于拉丁字母和英文标点；中文字符和全角标点回退到中文字体，避免标点错位叠字 */
@font-face {
  font-family: 'Caveat CJK Safe';
  src: local('Caveat'), local('Caveat Regular');
  font-weight: 400 700;
  unicode-range: U+0020-007E, U+00A0-00FF; /* 仅限 ASCII + Latin-1 */
}

:root {
  /* 手写体字体栈：Latin 走 Caveat；中文走楷体/宋体等更贴近手写气质的字体 */
  --font-script: 'Caveat CJK Safe', 'Caveat', 'Kaiti SC', 'KaiTi', 'STKaiti', '楷体', 'Ma Shan Zheng', cursive;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  cursor: none; /* 用自定义光标 */
}
body.no-custom-cursor { cursor: auto; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; font-weight: 500; }
p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

/* 触摸设备恢复默认光标 */
@media (hover: none) {
  body { cursor: auto; }
  .cursor-ripple { display: none; }
}

/* ---------- Cursor Ripple ---------- */
.cursor-ripple {
  position: fixed;
  width: 32px; height: 32px;
  border: 1.5px solid var(--sage);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.35s var(--ease-water), opacity 0.3s, border-color 0.2s;
  z-index: 9999;
  mix-blend-mode: multiply;
  opacity: 0.65;
}
.cursor-ripple::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.5;
}
.cursor-ripple.hover {
  transform: translate(-50%, -50%) scale(1.8);
  border-color: var(--cocoa);
  opacity: 0.4;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(245, 241, 232, 0.75);
  border-bottom: 1px solid rgba(156, 174, 147, 0.12);
  transition: padding 0.3s var(--ease-water), background 0.3s;
}
.nav.scrolled { padding: 14px 48px; background: rgba(245, 241, 232, 0.92); }
.nav__logo img { height: 36px; transition: transform 0.4s var(--ease-water); }
.nav__logo:hover img { transform: rotate(-2deg) scale(1.05); }
.nav__links { display: flex; gap: 36px; }
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1.5px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-water);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s var(--ease-water);
}
.nav__cta:hover { background: var(--sage-deep); transform: translateY(-2px); }
.nav__cta .arrow { transition: transform 0.3s var(--ease-water); }
.nav__cta:hover .arrow { transform: translate(3px, -3px) rotate(10deg); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.2s; }

/* 移动端菜单默认不显示（仅在 @media 里激活） */
.nav__mobile { display: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 48px 80px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, #EFE7D5 0%, var(--cream) 60%, #E5EDE0 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__waves {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%; height: 60%;
}
.wave {
  stroke-dasharray: 3000;
  stroke-dashoffset: 0;
  animation: wave-draw 8s ease-in-out infinite alternate;
}
.wave-2 { animation-duration: 10s; animation-delay: -2s; }
.wave-3 { animation-duration: 12s; animation-delay: -4s; }
@keyframes wave-draw {
  0% { transform: translateX(0); }
  100% { transform: translateX(-60px); }
}
.floater {
  position: absolute;
  font-size: 28px;
  opacity: 0.55;
  animation: floater 8s ease-in-out infinite;
}
.floater--leaf { animation-duration: 9s; }
.floater--sun { animation-duration: 11s; animation-delay: -1s; }
.floater--cup { animation-duration: 7s; animation-delay: -3s; }
@keyframes floater {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-18px) rotate(3deg); }
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--gap-l);
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 2;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--sage-deep);
  margin-bottom: 24px;
}
.scribble {
  display: inline-block;
  width: 40px; height: 2px;
  background: var(--sage-deep);
  border-radius: 2px;
  transform: rotate(-8deg);
}

.hero__title {
  font-family: var(--font-serif);
  /* 上限从 88 降到 76，给临界断行区间留余量；6vw 在 1440 屏约 86px，收到 5.2vw 约 75px */
  font-size: clamp(40px, 5.2vw, 76px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  /* CJK 不在字中拆；整行放不下才换行 */
  word-break: keep-all;
  overflow-wrap: break-word;
}
.hero__title em {
  font-style: normal;
  font-family: var(--font-script);
  color: var(--sage-deep);
  position: relative;
  padding: 0 4px;
  display: inline;
  /* "托起来"三字必须整体换行，不能在中间拆 */
  white-space: nowrap;
}
.hero__title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 10px;
  background: rgba(184, 212, 227, 0.5);
  z-index: -1;
  transform: skewX(-6deg);
}

.hero__sub {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.3s var(--ease-water), box-shadow 0.3s, background 0.3s;
}
.btn--primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 8px 24px -12px rgba(42, 51, 41, 0.5);
}
.btn--primary:hover {
  background: var(--sage-deep);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -12px rgba(93, 111, 82, 0.5);
}
.btn--primary svg { transition: transform 0.3s var(--ease-water); }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.hero__stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(42, 51, 41, 0.12);
}
.hero__stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero__stats strong {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
}
.hero__stats span {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}

/* HERO - Ollie 舞台 */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ollie-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1.1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ollie-stage--hero {
  max-width: 480px;
  aspect-ratio: 1/1.15;
}
.ollie-stage .ollie {
  width: 88%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 40px rgba(93, 111, 82, 0.22));
}
.ollie--breath {
  animation: breath 4s var(--ease-float) infinite;
  transform-origin: bottom center;
}
@keyframes breath {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.01); }
}

.ollie-shadow {
  /* 新 Hero 图自带投影椭圆，CSS 阴影关闭避免双重 */
  display: none;
}
@keyframes shadow-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  50% { transform: translateX(-50%) scale(0.85); opacity: 0.4; }
}

/* 贴纸 */
.sticker {
  position: absolute;
  font-family: var(--font-script);
  color: var(--ink);
  z-index: 3;
  animation: sticker-float 6s var(--ease-float) infinite;
}
.sticker--hi {
  top: 8%;
  right: -8%;
  font-size: 26px;
  transform: rotate(8deg);
}
.sticker--hi svg {
  position: absolute;
  left: -15px; bottom: -12px;
  width: 120px; height: 60px;
}
.sticker--arrow {
  bottom: 20%;
  left: -8%;
  transform: rotate(-12deg);
}
.sticker--arrow svg { width: 80px; height: 50px; }

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

/* 滚动提示 */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-family: var(--font-script);
  font-size: 16px;
  z-index: 3;
}
.scroll-hint__line {
  width: 1px;
  height: 40px;
  background: var(--ink-soft);
  position: relative;
  overflow: hidden;
}
.scroll-hint__line::after {
  content: '';
  position: absolute;
  top: -50%;
  width: 100%;
  height: 50%;
  background: var(--ink);
  animation: scroll-hint 1.8s var(--ease-water) infinite;
}
@keyframes scroll-hint {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--sage);
  color: var(--cream);
  padding: 28px 0;
  overflow: hidden;
  border-block: 1px solid rgba(42, 51, 41, 0.1);
}
.marquee__track {
  display: inline-flex;
  gap: 60px;
  white-space: nowrap;
  font-family: var(--font-script);
  font-size: 32px;
  animation: marquee 28s linear infinite;
}
.marquee__track span { display: inline-block; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Scene (业务) ---------- */
.scene {
  padding: var(--gap-xxl) 48px;
  position: relative;
}
.scene--coffee { background: var(--cream); }
.scene--paddle { background: linear-gradient(180deg, var(--cream) 0%, #E5EDE0 100%); }
.scene--team { background: #E5EDE0; }
.scene--eats { background: linear-gradient(180deg, #E5EDE0 0%, var(--cream-warm) 100%); }

.scene__label {
  max-width: var(--max-w);
  margin: 0 auto var(--gap-m);
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding-left: 4px;
}
.scene__num {
  font-family: var(--font-script);
  font-size: 56px;
  color: var(--sage);
  line-height: 1;
}
.scene__tag {
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--ink-soft);
  text-transform: uppercase;
  position: relative;
  padding-left: 40px;
}
.scene__tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 1px;
  background: var(--ink-soft);
}

.scene__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
}
.scene__grid--reverse .scene__copy { order: 2; }
.scene__grid--reverse .ollie-stage { order: 1; }

.scene__title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--ink);
}
.scene__title .highlight {
  font-family: var(--font-script);
  color: var(--sage-deep);
  position: relative;
  display: inline-block;
  /* "是咖啡师" / "在躺板" 等不允许中间拆开 */
  white-space: nowrap;
}
.scene__title .highlight::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px; bottom: 8px;
  height: 12px;
  background: rgba(184, 212, 227, 0.45);
  z-index: -1;
  transform: skewX(-8deg);
}
.scene__lead {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  line-height: 1.8;
}

.feature-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px dashed rgba(42, 51, 41, 0.15);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .dot { color: var(--sage); font-weight: 700; }

.link-underline {
  display: inline-block;
  margin-top: 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--ink);
  transition: color 0.3s, border-color 0.3s, transform 0.3s var(--ease-water);
}
.link-underline:hover {
  color: var(--sage-deep);
  border-color: var(--sage-deep);
  transform: translateX(6px);
}

/* ---------- Ollie 化身共用 ---------- */
.ollie-stage[data-reveal] {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: opacity 1s var(--ease-water), transform 1s var(--ease-water);
}
.ollie-stage[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.ollie-stage[data-reveal] .ollie {
  animation: breath 5s var(--ease-float) infinite;
  transform-origin: bottom center;
}

.scene__bg-shape {
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle, rgba(139, 90, 60, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

/* ============================================
   环境融合层（Scene Environment）
   让 Ollie 不再像膏药贴在背景上
   ============================================ */

/* Ollie 色调融合：用滤镜让不同场景下的 Ollie 吃进环境色温
   注：接入真·插画后滤镜仅保留投影，不再做 hue/saturate 扰动，避免污染原画色彩 */
.ollie--tinted-warm {
  filter: drop-shadow(0 22px 28px rgba(107, 66, 38, 0.3));
}
.ollie--tinted-cool {
  filter: drop-shadow(0 18px 24px rgba(60, 95, 120, 0.32));
}
.ollie--tinted-neutral {
  filter: drop-shadow(0 20px 28px rgba(93, 111, 82, 0.3));
}

/* Ollie 包裹容器：统一定位与动效 */
.ollie-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 3;
}
.ollie-wrap .ollie {
  filter: none;            /* 包裹层不重复滤镜 */
  position: relative;
  z-index: 2;
}

/* 接触阴影：让 Ollie "站在"某个表面上 */
.ollie-ground {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 14px;
  border-radius: 50%;
  filter: blur(6px);
  z-index: 1;
  animation: ground-pulse 5s var(--ease-float) infinite;
}
.ollie-ground--counter {
  background: radial-gradient(ellipse, rgba(60, 30, 15, 0.45), transparent 72%);
}
.ollie-ground--field {
  background: radial-gradient(ellipse, rgba(60, 75, 50, 0.45), transparent 72%);
}
.ollie-ground--wood {
  background: radial-gradient(ellipse, rgba(80, 40, 15, 0.5), transparent 70%);
}
@keyframes ground-pulse {
  0%, 100% { width: 55%; opacity: 0.75; }
  50% { width: 48%; opacity: 0.55; }
}

/* 环境通用 */
.env {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  z-index: 0;
}

/* --- 环境 · 咖啡馆（温馨吧台 v2） --- */
.env--coffee {
  background:
    radial-gradient(ellipse 80% 60% at 50% 25%, rgba(255, 210, 150, 0.35) 0%, transparent 70%),
    linear-gradient(180deg, #3d2a1e 0%, #4a3221 40%, #6b4226 68%, #3d2416 68%, #2a1810 100%);
  box-shadow:
    inset 0 30px 60px -20px rgba(0, 0, 0, 0.4),
    inset 0 -20px 40px rgba(0, 0, 0, 0.5);
}
/* 暖灯 */
.env--coffee .env__window {
  position: absolute;
  top: 6%; left: 50%;
  transform: translateX(-50%);
  width: 18%; aspect-ratio: 1/2.2;
  background:
    radial-gradient(ellipse 100% 30% at 50% 0%, rgba(255, 220, 160, 0.9) 0%, transparent 70%),
    linear-gradient(180deg, #d4a574 0%, #b88858 50%, #8a6238 100%);
  border-radius: 0 0 40% 40%;
  border: 2px solid #4a2e1a;
  border-top: none;
  box-shadow:
    0 40px 60px rgba(255, 200, 140, 0.35),
    inset 0 -6px 12px rgba(0, 0, 0, 0.3);
}
.env--coffee .env__window::before {
  /* 吊灯的拉绳 */
  content: '';
  position: absolute;
  top: -120%;
  left: 50%;
  width: 2px;
  height: 120%;
  background: #3b2416;
  transform: translateX(-50%);
}
.env--coffee .env__window::after {
  /* 光晕 */
  content: '';
  position: absolute;
  inset: -40% -60%;
  background: radial-gradient(ellipse, rgba(255, 220, 160, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
/* 挂杯架 */
.env--coffee .env__shelf {
  position: absolute;
  top: 32%; left: 8%;
  width: 30%;
  height: 6px;
  background: #2a1810;
  border-radius: 1px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 0 6px;
}
.env--coffee .env__jar {
  width: 22px; height: 28px;
  background: var(--c);
  border-radius: 0 0 50% 50% / 0 0 30% 30%;
  position: relative;
  top: 6px;
  border: 1.5px solid #3b2416;
  border-top: none;
  box-shadow: inset -3px -2px 4px rgba(0,0,0,0.2);
}
.env--coffee .env__jar::before {
  /* 杯柄 */
  content: '';
  position: absolute;
  right: -7px; top: 4px;
  width: 7px; height: 12px;
  border: 1.5px solid #3b2416;
  border-left: none;
  border-radius: 0 6px 6px 0;
}
.env--coffee .env__jar::after { display: none; }
/* 黑板菜单 */
.env--coffee .env__shelf + div,
.env--coffee .env__counter {
  position: absolute;
}
.env--coffee .env__counter {
  bottom: 0; left: 0; right: 0;
  height: 32%;
  background:
    /* 木纹 */
    repeating-linear-gradient(90deg, transparent 0 80px, rgba(0,0,0,0.12) 80px 81px, transparent 81px 160px),
    linear-gradient(180deg, #6b4226 0%, #4a2e1a 50%, #2a1810 100%);
  border-top: 4px solid #8b5a3c;
  box-shadow:
    inset 0 2px 0 rgba(255, 200, 140, 0.3),
    inset 0 -10px 20px rgba(0, 0, 0, 0.5);
}
.env--coffee .env__counter::before {
  /* 吧台反光 */
  content: '';
  position: absolute;
  top: 4px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 220, 160, 0.4), transparent);
}
.env--coffee .env__counter::after {
  /* 黑板小菜单 */
  content: 'TODAY · 手冲 / 拿铁 / 燕麦冷萃';
  position: absolute;
  top: -40%; right: 8%;
  padding: 6px 12px;
  background: #1a1008;
  color: #f5ecd5;
  font-family: var(--font-script);
  font-size: 13px;
  border-radius: 3px;
  border: 2px solid #6b4226;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  transform: rotate(-3deg);
}

/* --- 环境 · 江面 v2（悠闲的江南水面） --- */
.env--paddle {
  background:
    radial-gradient(ellipse 120% 60% at 50% 120%, rgba(156, 180, 170, 0.4) 0%, transparent 50%),
    linear-gradient(180deg,
      #F3E4C8 0%,
      #E8D4B0 25%,
      #D4C098 40%,
      #A8B9AE 55%,
      #7B9DA0 75%,
      #5A8293 100%);
  box-shadow: inset 0 -40px 80px rgba(40, 80, 100, 0.25);
}
.env--paddle .env__sky {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 48%;
  background:
    radial-gradient(ellipse 80% 60% at 72% 55%, rgba(255, 220, 160, 0.55) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,240,210,0.3) 0%, transparent 100%);
}
.env--paddle .env__sky::before {
  /* 夕阳 */
  content: '';
  position: absolute;
  top: 32%; right: 22%;
  width: 68px; height: 68px;
  background: radial-gradient(circle, #fff2d4 10%, #f5d09a 50%, rgba(245, 208, 154, 0.2) 80%);
  border-radius: 50%;
  filter: blur(1px);
  animation: sun-glow 8s var(--ease-float) infinite;
}
.env--paddle .env__sky::after {
  /* 远方一点点船的剪影 */
  content: '';
  position: absolute;
  top: 46%; left: 15%;
  width: 24px; height: 8px;
  background: rgba(60, 80, 90, 0.4);
  border-radius: 60% 40% 50% 50% / 100% 100% 0 0;
  box-shadow:
    60px 2px 0 -1px rgba(60, 80, 90, 0.3),
    130px -3px 0 -2px rgba(60, 80, 90, 0.35);
}
@keyframes sun-glow {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.12); opacity: 1; }
}
/* 河岸剪影 */
.env--paddle .env__mountain {
  position: absolute;
  top: 42%; left: 0; right: 0;
  height: 8%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(90, 120, 100, 0.5) 100%);
  clip-path: polygon(
    0 100%, 0 60%, 5% 40%, 12% 70%, 20% 30%,
    28% 55%, 36% 20%, 45% 50%, 55% 35%,
    65% 60%, 75% 25%, 85% 50%, 92% 35%, 100% 55%, 100% 100%
  );
}
.env--paddle .env__mountain::before {
  /* 远处芦苇/树丛 */
  content: '';
  position: absolute;
  bottom: -20%;
  left: 8%;
  width: 100px; height: 16px;
  background:
    radial-gradient(circle 8px at 10px 50%, #6b8870 60%, transparent 65%),
    radial-gradient(circle 10px at 30px 40%, #5a7862 60%, transparent 65%),
    radial-gradient(circle 7px at 55px 55%, #6b8870 60%, transparent 65%),
    radial-gradient(circle 9px at 75px 45%, #5a7862 60%, transparent 65%);
}
.env--paddle .env__water {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background:
    radial-gradient(ellipse 60% 40% at 75% 10%, rgba(255, 220, 170, 0.4) 0%, transparent 60%),
    linear-gradient(180deg,
      #A8B9AE 0%,
      #7B9DA0 30%,
      #5A8293 100%);
  overflow: hidden;
}
.env--paddle .env__water-line {
  position: absolute;
  left: -10%; width: 120%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(255, 230, 190, 0.65), transparent);
  animation: water-drift 7s var(--ease-water) infinite;
}
.env--paddle .env__water-line:nth-child(1) { top: 15%; animation-delay: 0s; }
.env--paddle .env__water-line:nth-child(2) { top: 40%; animation-delay: -2.5s; opacity: 0.7; }
.env--paddle .env__water-line:nth-child(3) { top: 65%; animation-delay: -5s; opacity: 0.5; }
@keyframes water-drift {
  0%, 100% { transform: translateX(-20px) scaleX(1); opacity: 0.5; }
  50% { transform: translateX(20px) scaleX(1.1); opacity: 1; }
}

/* --- 环境 · 团建（月历 + 场地） v2 --- */
.env--team {
  background:
    radial-gradient(ellipse 80% 50% at 50% 30%, rgba(255, 240, 200, 0.5) 0%, transparent 70%),
    linear-gradient(180deg, #F4EDD8 0%, #E8DCC0 55%, #D4C8A8 80%, #B8AE88 100%);
}
.env--team .env__field {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 28%;
  background:
    radial-gradient(ellipse 120% 80% at 50% 100%, #B5C189 0%, #98A870 60%, #7B8E5B 100%);
  box-shadow: inset 0 8px 20px rgba(90, 110, 70, 0.3);
}
.env--team .env__field::before,
.env--team .env__field::after { display: none; }

/* 月历卡 */
.calendar {
  position: absolute;
  top: 6%;
  left: 6%;
  width: 46%;
  padding: 18px 16px 14px;
  background: #FBF7EC;
  border: 2px solid var(--ink);
  border-radius: 10px;
  box-shadow:
    6px 8px 0 var(--sage-deep),
    0 20px 40px -15px rgba(42, 51, 41, 0.4);
  transform: rotate(-3deg);
  font-family: var(--font-sans);
  z-index: 2;
  animation: calendar-float 6s var(--ease-float) infinite;
}
@keyframes calendar-float {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-6px); }
}
.calendar__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 4px 10px;
  border-bottom: 1.5px dashed var(--ink);
  margin-bottom: 10px;
}
.calendar__month {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--sage-deep);
  font-weight: 700;
  line-height: 1;
}
.calendar__year {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
}
.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.calendar__dow {
  font-size: 9px;
  color: var(--ink-soft);
  text-align: center;
  padding: 2px 0 6px;
  letter-spacing: 0.05em;
}
.calendar__d {
  font-size: 11px;
  color: var(--ink);
  text-align: center;
  padding: 4px 0;
  border-radius: 4px;
  position: relative;
  font-weight: 500;
}
.calendar__d--mute { color: transparent; }
.calendar__d--book {
  background: var(--sage);
  color: var(--cream);
  font-weight: 700;
  box-shadow: 0 2px 0 var(--sage-deep);
  animation: book-pulse 2.5s ease-in-out infinite;
}
.calendar__d--book:nth-child(7n+1) { animation-delay: 0s; }
.calendar__d--book:nth-child(odd) { animation-delay: 0.4s; }
@keyframes book-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); box-shadow: 0 3px 0 var(--sage-deep), 0 0 0 3px rgba(156, 174, 147, 0.35); }
}
.calendar__legend {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed rgba(42, 51, 41, 0.2);
  font-family: var(--font-script);
  font-size: 15px;
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  gap: 6px;
}
.calendar__dot {
  width: 10px; height: 10px;
  background: var(--sage);
  border-radius: 50%;
  box-shadow: 0 2px 0 var(--sage-deep);
}

/* --- 环境 · 厨房岛台 v2（温馨） --- */
.env--eats {
  background:
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(255, 230, 180, 0.45) 0%, transparent 70%),
    linear-gradient(180deg,
      #F9ECD0 0%,
      #EED9AC 40%,
      #D9B883 55%,
      #E8D4AF 55%,
      #C9A87C 100%);
}
.env--eats .env__wall {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  background:
    linear-gradient(180deg,
      #F9ECD0 0%,
      #EED9AC 100%);
}
/* 墙面：木板竖纹 */
.env--eats .env__tiles {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  background:
    repeating-linear-gradient(90deg,
      transparent 0 70px,
      rgba(139, 90, 60, 0.12) 70px 71px,
      transparent 71px 72px),
    linear-gradient(180deg,
      rgba(255, 220, 170, 0.15) 0%,
      transparent 100%);
}
.env--eats .env__tiles::before {
  /* 壁灯 */
  content: '';
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 32px;
  background:
    radial-gradient(ellipse 80% 100% at 50% 100%, #ffd89a 0%, #d4a574 60%, #8b5a3c 100%);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  border: 2px solid #6b4226;
  border-top: 0;
  box-shadow:
    0 2px 0 #6b4226,
    0 30px 50px rgba(255, 210, 150, 0.35);
}
.env--eats .env__tiles::after {
  /* 挂着两个锅 */
  content: '';
  position: absolute;
  top: 28%;
  right: 10%;
  width: 38px; height: 38px;
  background: radial-gradient(circle at 35% 30%, #5a5a5a 0%, #2a2a2a 70%);
  border-radius: 50%;
  border: 2px solid #1a1a1a;
  box-shadow:
    -60px 4px 0 -2px #8b5a3c,
    -60px 4px 0 0 #3b2416,
    0 4px 8px rgba(0,0,0,0.3);
}
/* 岛台 */
.env--eats .env__board-wood {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background:
    /* 岛台正面 */
    linear-gradient(180deg,
      transparent 0 40%,
      #B88858 40%,
      #A17050 60%,
      #8A5C3D 100%);
}
.env--eats .env__board-wood::before {
  /* 岛台台面（大理石白+木边） */
  content: '';
  position: absolute;
  top: 0; left: 4%; right: 4%;
  height: 44%;
  background:
    linear-gradient(180deg,
      #F5EFDC 0%,
      #E8DCC0 50%,
      #D4C2A0 100%);
  border-radius: 6px 6px 0 0;
  border: 2px solid #6b4226;
  border-bottom: 6px solid #6b4226;
  box-shadow:
    inset 0 4px 0 rgba(255,255,255,0.5),
    0 6px 12px rgba(107, 66, 38, 0.3);
}
.env--eats .env__board-wood::after {
  /* 台面上小道具剪影：瓶子 + 砧板 */
  content: '';
  position: absolute;
  top: 20%;
  left: 12%;
  width: 16px; height: 26px;
  background: linear-gradient(180deg, #6b8870 0%, #5a7862 100%);
  border-radius: 3px 3px 2px 2px;
  box-shadow:
    /* 第二个瓶 */
    28px 2px 0 -2px #8b5a3c,
    28px 2px 0 0 #3b2416,
    /* 砧板 */
    220px 10px 0 -1px #a17050,
    240px 10px 0 -1px #a17050,
    260px 10px 0 -1px #a17050;
}

/* --- Stage 自身基础：圆角边框 --- */
.ollie-stage[data-reveal] {
  border-radius: 28px;
  position: relative;
  overflow: visible;  /* 道具可以溢出（贴纸/桨） */
}
/* 环境层自身裁切即可 */
.env { border-radius: 28px; }
.ollie-stage[data-reveal]::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  box-shadow: 0 30px 60px -20px rgba(42, 51, 41, 0.25);
  pointer-events: none;
  z-index: -1;
}

/* --- 化身 01: 咖啡师 --- */
.ollie-stage--coffee { padding: 20px; }
.ollie-stage--coffee .ollie-wrap {
  padding-bottom: 2%;
  height: 100%;
}
.ollie-stage--coffee .ollie {
  width: 72%;
  margin-bottom: -4%;
  position: relative;
  z-index: 3;
}
.prop--apron {
  position: absolute;
  width: 44%;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: apron-sway 6s var(--ease-float) infinite;
  transform-origin: top center;
}
@keyframes apron-sway {
  0%, 100% { transform: translateX(-50%) rotate(0deg); }
  50% { transform: translateX(-50%) rotate(1.5deg); }
}
.prop--cup {
  position: absolute;
  width: 20%;
  bottom: 20%;
  right: 8%;
  z-index: 4;
  animation: cup-bob 3.5s var(--ease-float) infinite;
}
@keyframes cup-bob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
}
.prop--steam {
  position: absolute;
  bottom: 52%;
  right: 15%;
  width: 30px; height: 80px;
  z-index: 5;
}
.prop--steam span {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 6px; height: 6px;
  background: rgba(139, 90, 60, 0.5);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: steam 2.5s ease-out infinite;
}
.prop--steam span:nth-child(1) { animation-delay: 0s; }
.prop--steam span:nth-child(2) { animation-delay: 0.8s; left: 40%; }
.prop--steam span:nth-child(3) { animation-delay: 1.6s; left: 60%; }
@keyframes steam {
  0% { transform: translate(-50%, 0) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -80px) scale(2); opacity: 0; }
}

.sticker--tilted {
  padding: 10px 16px;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  font-family: var(--font-script);
  font-size: 20px;
  line-height: 1.3;
  color: var(--ink);
  box-shadow: 4px 6px 0 var(--sage-deep);
  text-align: center;
}
.sticker--coffee {
  top: 12%;
  left: 0;
  transform: rotate(-8deg);
}
.sticker--team {
  top: 18%;
  right: -2%;
  transform: rotate(6deg);
  background: var(--sage);
  color: var(--cream);
  border-color: var(--sage-deep);
  box-shadow: 4px 6px 0 var(--ink);
}
.sticker--eats {
  bottom: 15%;
  left: -4%;
  transform: rotate(-10deg);
  background: var(--cocoa);
  color: var(--cream);
  border-color: var(--cocoa-deep);
  box-shadow: 4px 6px 0 var(--ink);
}

/* --- 化身 02: 桨板 --- */
.ollie-stage--paddle {
  overflow: hidden;
  border-radius: 28px;
}
.ollie-wrap--paddle {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ollie-wrap--paddle .ollie {
  position: relative;
  width: 88%;
  max-width: none;
  transform: rotate(-6deg);
  animation: paddle-float 6s var(--ease-float) infinite;
  margin-bottom: 0;
}
/* 桨板专用：漂浮而非呼吸 */
@keyframes paddle-float {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-10px); }
}
/* 桨板图不使用通用 breath 动画 */
.ollie-stage--paddle[data-reveal] .ollie {
  animation: paddle-float 6s var(--ease-float) infinite;
}
.paddle-water {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 35% at 50% 65%, rgba(184, 212, 227, 0.5) 0%, transparent 70%),
    linear-gradient(180deg, transparent 60%, rgba(184, 212, 227, 0.25) 100%);
  border-radius: 20px;
}
.paddle-board {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  z-index: 2;
  animation: board-bob 5s var(--ease-float) infinite;
}
@keyframes board-bob {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(0); }
  50% { transform: translateX(-50%) translateY(-8px) rotate(1deg); }
}
.prop--paddle {
  position: absolute;
  width: 10%;
  top: 5%;
  right: 18%;
  z-index: 4;
  transform: rotate(20deg);
  animation: paddle-rotate 5s var(--ease-float) infinite;
  transform-origin: bottom center;
}
@keyframes paddle-rotate {
  0%, 100% { transform: rotate(20deg); }
  50% { transform: rotate(14deg); }
}
.prop--shades {
  position: absolute;
  width: 18%;
  top: 26%;
  left: 42%;
  z-index: 4;
  transform: rotate(-4deg);
}
.ripple {
  position: absolute;
  border: 1.5px solid var(--sky);
  border-radius: 50%;
  bottom: 18%;
  left: 50%;
  transform: translate(-50%, 50%);
  animation: ripple-spread 4s ease-out infinite;
}
.ripple-1 { width: 100px; height: 20px; }
.ripple-2 { width: 200px; height: 40px; animation-delay: -1.5s; }
@keyframes ripple-spread {
  0% { transform: translate(-50%, 50%) scale(0.5); opacity: 0.8; }
  100% { transform: translate(-50%, 50%) scale(1.8); opacity: 0; }
}

/* --- 化身 03: 教练 --- */
.ollie-stage--team {
  padding: 20px;
}
.ollie-stage--team .ollie-wrap {
  padding-bottom: 2%;
  justify-content: flex-end;
  padding-right: 4%;
  height: 100%;
}
.ollie-stage--team .ollie {
  width: 60%;
  margin-bottom: -2%;
  position: relative;
  z-index: 3;
}
.team-circle {
  position: absolute;
  top: 50%; left: 50%;
  width: 85%;
  aspect-ratio: 1;
  border: 1.5px dashed var(--sage);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: slow-spin 30s linear infinite;
}
@keyframes slow-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.team-dots {
  position: absolute;
  top: 50%; left: 50%;
  width: 85%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  animation: slow-spin 25s linear infinite;
}
.team-dots span {
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cocoa);
  transform: translate(-50%, -50%) rotate(calc(var(--a) * 1deg)) translateY(-50%) translateY(-8px);
  box-shadow: 0 2px 8px rgba(139, 90, 60, 0.3);
}
.team-dots span:nth-child(1) { background: var(--sage); }
.team-dots span:nth-child(2) { background: var(--cocoa); }
.team-dots span:nth-child(3) { background: var(--sky); }
.team-dots span:nth-child(4) { background: var(--sage-deep); }
.team-dots span:nth-child(5) { background: var(--sand); }
.team-dots span:nth-child(6) { background: var(--cocoa-deep); }

.prop--cap {
  position: absolute;
  width: 42%;
  top: 4%;
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);
  z-index: 4;
  animation: cap-wobble 4s var(--ease-float) infinite;
}
@keyframes cap-wobble {
  0%, 100% { transform: translateX(-50%) rotate(-6deg); }
  50% { transform: translateX(-49%) rotate(-4deg); }
}
.prop--whistle {
  position: absolute;
  width: 16%;
  top: 48%;
  right: 22%;
  z-index: 4;
  transform: rotate(-10deg);
  animation: whistle-swing 2.5s ease-in-out infinite;
  transform-origin: top right;
}
@keyframes whistle-swing {
  0%, 100% { transform: rotate(-10deg); }
  50% { transform: rotate(-20deg); }
}

/* --- 化身 04: 厨子 --- */
.ollie-stage--eats {
  padding: 20px;
}
.ollie-stage--eats .ollie-wrap {
  padding-bottom: 2%;
  height: 100%;
}
.ollie-stage--eats .ollie {
  width: 75%;
  margin-bottom: -4%;
  position: relative;
  z-index: 3;
}
.eats-plate {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60px;
  background: radial-gradient(ellipse 50% 100% at 50% 50%, var(--cream) 50%, var(--sand) 100%);
  border-radius: 50%;
  border: 2px solid var(--cocoa-deep);
  box-shadow: 0 6px 0 var(--cocoa-deep), 0 20px 30px -10px rgba(139, 90, 60, 0.3);
  z-index: 1;
}
.eats-items {
  position: absolute;
  bottom: 14%;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 16px;
  z-index: 4;
  font-size: 32px;
}
.eats-item {
  animation: bounce-in 2.5s var(--ease-float) infinite;
  animation-delay: var(--d);
}
@keyframes bounce-in {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(6deg); }
}
.prop--chef-hat {
  position: absolute;
  width: 50%;
  top: -4%;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  z-index: 4;
  animation: cap-wobble 4s var(--ease-float) infinite;
}
.prop--spatula {
  position: absolute;
  width: 10%;
  top: 30%;
  right: 18%;
  z-index: 5;
  transform: rotate(20deg);
  animation: paddle-rotate 4s var(--ease-float) infinite;
}

/* ---------- Story ---------- */
.story {
  padding: var(--gap-xxl) 48px;
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.story::before {
  content: '';
  position: absolute;
  top: 20%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(156, 174, 147, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}
.story::after {
  content: '';
  position: absolute;
  bottom: 10%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184, 212, 227, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
}
.story__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}
.story__kicker {
  font-family: var(--font-script);
  font-size: 26px;
  color: var(--sage-deep);
  margin-bottom: 24px;
}
.story__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
  color: var(--ink);
}
.story__title .highlight {
  font-family: var(--font-script);
  color: var(--cocoa);
}
.story__body p {
  font-size: 19px;
  line-height: 2.1;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.story__sign {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--sage-deep);
  margin-top: 48px;
}

/* ---------- CTA ---------- */
.cta {
  padding: var(--gap-xl) 48px;
  background: var(--cream);
}
.cta__card {
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--sage);
  color: var(--cream);
  border-radius: 32px;
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(93, 111, 82, 0.5);
}
.cta__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 50%, rgba(245, 241, 232, 0.1) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent 0 40px, rgba(245, 241, 232, 0.03) 40px 42px);
}
.cta__ollie {
  width: 100%;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
  animation: breath 4s var(--ease-float) infinite;
  transform-origin: bottom center;
  position: relative;
  z-index: 2;
}
.cta__copy { position: relative; z-index: 2; }
.cta__copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 48px);
  margin-bottom: 16px;
}
.cta__copy p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.8;
}
.cta__form {
  display: flex;
  gap: 12px;
  background: rgba(245, 241, 232, 0.15);
  padding: 6px;
  border-radius: 100px;
  max-width: 460px;
  position: relative;
}
.cta__form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 20px;
  color: var(--cream);
  font-size: 15px;
  font-family: inherit;
  outline: none;
}
.cta__form input::placeholder { color: rgba(245, 241, 232, 0.65); }
.cta__form button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 100px;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s;
}
.cta__form button:hover { background: var(--cocoa); transform: translateY(-2px); }
.cta__done {
  position: absolute;
  top: 50%; left: 24px;
  transform: translateY(-50%);
  color: var(--cream);
  font-weight: 500;
  background: var(--sage);
  padding: 4px 12px;
  border-radius: 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.cta__done.show { opacity: 1; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 48px 32px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.15);
}
.footer__brand img {
  height: 56px;
  margin-bottom: 24px;
  opacity: 0.95;
  /* 新 logo 是彩色的，不需要反色处理 */
}
.footer__brand p {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.6;
  opacity: 0.75;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__cols h4 {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--sage);
}
.footer__cols a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.3s var(--ease-water);
}
.footer__cols a:hover { opacity: 1; transform: translateX(4px); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.5;
}

/* ============================================
   Responsive / Mobile
   ============================================ */
@media (max-width: 960px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.active span:nth-child(2) { opacity: 0; }
  .nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav__mobile {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--cream);
    padding: 24px;
    flex-direction: column;
    gap: 4px;
    display: none;  /* 默认隐藏，.active 才出现 */
    border-bottom: 1px solid rgba(156, 174, 147, 0.2);
    box-shadow: 0 20px 40px -20px rgba(42, 51, 41, 0.2);
  }
  .nav__mobile.active { display: flex; }
  .nav__mobile a {
    padding: 14px 8px;
    font-size: 18px;
    border-bottom: 1px solid rgba(42, 51, 41, 0.08);
  }
  .nav__mobile a:last-child {
    background: var(--ink);
    color: var(--cream);
    border-radius: 100px;
    text-align: center;
    margin-top: 12px;
    padding: 14px;
  }

  .hero { padding: 120px 24px 60px; min-height: auto; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--gap-m);
    text-align: center;
  }
  .hero__kicker { justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; gap: 32px; flex-wrap: wrap; }
  .hero__stats strong { font-size: 26px; }
  .hero__visual { order: -1; }
  .ollie-stage--hero { max-width: 280px; margin: 0 auto; }
  .sticker--hi { font-size: 20px; }
  .scroll-hint { display: none; }

  .marquee__track { font-size: 22px; gap: 40px; }
  .marquee { padding: 20px 0; }

  .scene { padding: 100px 24px; }
  .scene__grid,
  .scene__grid--reverse {
    grid-template-columns: 1fr;
    gap: var(--gap-m);
  }
  .scene__grid--reverse .scene__copy { order: 2; }
  .scene__grid--reverse .ollie-stage { order: 1; }
  .scene__grid .ollie-stage { order: 1; }
  .scene__grid .scene__copy { order: 2; }
  .scene__title { font-size: 36px; }
  .scene__lead { font-size: 16px; }
  .scene__num { font-size: 42px; }
  .ollie-stage { max-width: 400px; margin: 0 auto; width: 100%; }

  .story { padding: 80px 24px; }
  .story__title { font-size: 28px; }
  .story__body p { font-size: 16px; line-height: 1.9; }

  .cta { padding: 60px 24px; }
  .cta__card {
    grid-template-columns: 1fr;
    padding: 48px 28px;
    gap: 24px;
    text-align: center;
    border-radius: 24px;
  }
  .cta__ollie { max-width: 200px; margin: 0 auto; }
  .cta__form { flex-direction: column; background: transparent; padding: 0; gap: 10px; border-radius: 16px; }
  .cta__form input {
    background: rgba(245, 241, 232, 0.15);
    border-radius: 12px;
    text-align: center;
  }
  .cta__form button { border-radius: 12px; justify-content: center; }
  .cta__done { position: static; transform: none; margin-top: 12px; display: inline-block; }

  .footer { padding: 56px 24px 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 40px; }
  .btn { padding: 14px 22px; font-size: 14px; }
  .scene__title { font-size: 30px; }
  .scene__title .highlight::after { height: 8px; bottom: 4px; }
  .story__title { font-size: 24px; }
  .cta__copy h2 { font-size: 28px; }
}

/* 减少动画 - 尊重用户偏好 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
