/**
 * 鹿雅云 · 样板主题「四季菜园」(theme-garden.css)— 084
 * album.theme = "garden" 时激活([data-album-theme="garden"])。
 * 只做令牌覆盖 + 场景装饰;结构样式复用 album.css / blocks.css。
 */

[data-album-theme="garden"] {
  /* 田园调令牌覆盖:奶油绿底,叶绿替代蜜金做点缀色 */
  --bg: #F3F6EB;
  --surface: #FDFEF8;
  --surface-2: #EDF2DE;
  --line: #E1E8CE;
  --hairline: #DCE4C6;
  --gold: #7FA05A;          /* 点缀绿(日出点/指示点/角标) */
  --gold-ink: #567A38;
  --print-paper: #FFFEF9;
  --print-edge: #E3E8D0;
  --sky: rgba(143, 178, 94, .12);
  --scrim: rgba(38, 46, 24, .34);
  --elev: 0 4px 12px rgba(74, 92, 44, .09);
  /* 菜园照片不做旧,保留清新原色,只轻微提亮 */
  --ph-filter: saturate(1.02) brightness(1.02);
}

/* 封面顶部:一条手绘感藤蔓沿上边爬(data-uri SVG,描边用叶绿) */
[data-album-theme="garden"] .cover::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 34px;
  z-index: 6;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 560 34' fill='none' stroke='%23DCE9C3' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M-4 10 C 60 26, 120 -2, 190 12 S 330 28, 400 10 S 520 2, 566 14'/%3E%3Cpath d='M80 14 q 6 -12 16 -10 q -2 12 -16 10z' fill='%23CBDCA8' stroke='none'/%3E%3Cpath d='M250 16 q 8 -12 18 -9 q -4 12 -18 9z' fill='%23CBDCA8' stroke='none'/%3E%3Cpath d='M430 10 q 6 12 17 9 q -3 -13 -17 -9z' fill='%23CBDCA8' stroke='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* 章节标题前的小叶子 */
[data-album-theme="garden"] .chapter-head h2::before {
  content: "";
  display: inline-block;
  width: 14px; height: 14px;
  margin-right: 8px;
  vertical-align: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2 12 C 2 5, 7 2, 12 2 C 12 8, 8 12, 2 12z' fill='%23A9C77E'/%3E%3Cpath d='M2 12 C 5 9, 8 6, 11 3' stroke='%237FA05A' stroke-width='.8' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* 诗句区两侧留白里淡淡的草茎(极轻,不抢内容) */
[data-album-theme="garden"] .verse {
  position: relative;
}
[data-album-theme="garden"] .verse::after {
  content: "";
  position: absolute; right: 10px; bottom: 8px;
  width: 22px; height: 30px;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 30' fill='none' stroke='%23BFD49A' stroke-width='1.4' stroke-linecap='round'%3E%3Cpath d='M11 30 C 11 18, 9 10, 4 3'/%3E%3Cpath d='M11 30 C 12 20, 15 12, 19 7'/%3E%3Cpath d='M7 14 q -6 -3 -6 -9 q 7 1 6 9z' fill='%23D4E4B4' stroke='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* 尾页鹿角旁添一点绿意 */
[data-album-theme="garden"] .colophon .antler { color: var(--gold-ink); }
