/**
 * Princess Pea · main.css
 *
 * Single-file stylesheet (v1.1.0). Custom properties below mirror what
 * theme.json exposes as --wp--preset--* so templates and blocks share tokens.
 *
 * @font-face declarations come from theme.json's fontFace section — WordPress
 * auto-generates them on output. The `file:./assets/fonts/...woff2` paths
 * resolve relative to the theme root.
 */

  :root {
    --pea-ghost: #EDF2E4;
    --pea-light: #D8E4C5;
    --pea-soft: #BCCFA1;
    --pea-mid: #9BB584;
    --pea-deep: #5C7447;
    --pea-ink: #2A3A1F;
    --cream: #F7F3EB;
    --cream-warm: #EFE7D8;
    --paper: #FAF8F3;
    --gold: #C9A961;
    --gold-deep: #A08440;
    --ink: #1F1A12;
    --font-serif-cn: "Noto Serif SC", "Songti SC", serif;
    --font-script-cn: "Ma Shan Zheng", cursive;
    --font-serif-en: "Fraunces", Georgia, serif;
    --font-sans: "Manrope", -apple-system, sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-sans);
    background: var(--paper);
    color: var(--pea-ink);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
  }

  /* ===== 噪点纹理背景 ===== */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.22 0 0 0 0 0.12 0 0 0 0.08 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
  }

  /* ===== 导航栏 ===== */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 22px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(250, 248, 243, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(42, 58, 31, 0.08);
  }

  .nav-logo {
    font-family: var(--font-serif-cn);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--pea-ink);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-logo-en {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 13px;
    font-weight: 400;
    color: var(--pea-deep);
    letter-spacing: 1px;
    opacity: 0.75;
  }

  .nav-menu {
    display: flex;
    gap: 38px;
    list-style: none;
  }

  .nav-menu a {
    text-decoration: none;
    color: var(--pea-ink);
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 400;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
  }

  .nav-menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--pea-deep);
    transition: all 0.4s ease;
    transform: translateX(-50%);
  }

  .nav-menu a:hover::after { width: 100%; }
  .nav-menu a:hover { color: var(--pea-deep); }

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

  .nav-icon {
    width: 18px;
    height: 18px;
    stroke: var(--pea-ink);
    fill: none;
    stroke-width: 1.5;
    cursor: pointer;
    transition: stroke 0.3s;
  }

  .nav-icon:hover { stroke: var(--pea-deep); }

  .nav-bag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-family: var(--font-serif-en);
    font-style: italic;
    color: var(--pea-ink);
  }

  /* ===== Hero ===== */
  .hero {
    min-height: 100vh;
    padding: 120px 56px 80px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, var(--paper) 0%, var(--pea-ghost) 100%);
  }

  .hero-left {
    position: relative;
    z-index: 2;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 13px;
    color: var(--pea-deep);
    margin-bottom: 28px;
    letter-spacing: 1px;
  }

  .hero-tag::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--pea-deep);
  }

  .hero-title {
    font-family: var(--font-serif-cn);
    font-size: clamp(56px, 7vw, 108px);
    font-weight: 500;
    line-height: 1.05;
    color: var(--pea-ink);
    margin-bottom: 20px;
    letter-spacing: 2px;
  }

  .hero-title .accent {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-weight: 300;
    color: var(--pea-deep);
    display: inline-block;
    transform: translateY(-4px);
  }

  .hero-title .gold-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    vertical-align: middle;
    margin: 0 8px;
    transform: translateY(-12px);
  }

  .hero-sub {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 18px;
    font-weight: 300;
    color: var(--pea-deep);
    margin-bottom: 36px;
    letter-spacing: 0.5px;
  }

  .hero-desc {
    font-family: var(--font-serif-cn);
    font-size: 15px;
    line-height: 2;
    color: var(--pea-ink);
    max-width: 440px;
    margin-bottom: 48px;
    opacity: 0.85;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 38px;
    background: var(--pea-ink);
    color: var(--cream);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 400;
    border-radius: 999px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .hero-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--pea-deep);
    transition: left 0.4s ease;
    z-index: 0;
  }

  .hero-cta:hover::before { left: 0; }
  .hero-cta > * { position: relative; z-index: 1; }
  .hero-cta:hover { transform: translateY(-2px); }

  .hero-cta-arrow {
    width: 14px;
    height: 14px;
    stroke: var(--cream);
    fill: none;
    stroke-width: 1.5;
  }

  /* Hero 右侧视觉 */
  .hero-right {
    position: relative;
    height: 640px;
  }

  .hero-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #D8E4C5 0%, #9BB584 70%, #5C7447 100%);
    box-shadow:
      inset -40px -60px 120px rgba(42, 58, 31, 0.3),
      inset 20px 30px 80px rgba(237, 242, 228, 0.6),
      0 40px 80px rgba(92, 116, 71, 0.25);
  }

  .hero-circle::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 22%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(8px);
  }

  .hero-pea {
    position: absolute;
    animation: float 6s ease-in-out infinite;
  }

  .hero-pea-1 {
    top: 8%;
    right: 10%;
    width: 90px;
    animation-delay: 0s;
  }

  .hero-pea-2 {
    bottom: 12%;
    left: 6%;
    width: 70px;
    animation-delay: 2s;
  }

  .hero-pea-3 {
    top: 42%;
    right: 2%;
    width: 55px;
    animation-delay: 4s;
  }

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

  .hero-leaf {
    position: absolute;
    top: 58%;
    left: 18%;
    width: 140px;
    opacity: 0.9;
    transform: rotate(-15deg);
    animation: sway 8s ease-in-out infinite;
  }

  @keyframes sway {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(-5deg); }
  }

  .hero-badge {
    position: absolute;
    bottom: 40px;
    right: 20px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: var(--font-serif-cn);
    font-size: 13px;
    color: var(--pea-deep);
    border: 1px solid var(--pea-soft);
    animation: rotate 30s linear infinite;
  }

  .hero-badge-text {
    position: absolute;
    inset: 0;
    animation: rotate 20s linear infinite;
  }

  @keyframes rotate {
    to { transform: rotate(360deg); }
  }

  .hero-badge-center {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 24px;
    color: var(--pea-ink);
    font-weight: 500;
  }

  .hero-badge-center span {
    display: block;
    font-family: var(--font-serif-cn);
    font-size: 10px;
    letter-spacing: 3px;
    margin-top: 4px;
    color: var(--pea-deep);
  }

  .scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 56px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 12px;
    color: var(--pea-deep);
    letter-spacing: 2px;
  }

  .scroll-line {
    width: 40px;
    height: 1px;
    background: var(--pea-deep);
    position: relative;
    overflow: hidden;
  }

  .scroll-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--pea-ink);
    animation: scrollLine 2s ease-in-out infinite;
  }

  @keyframes scrollLine {
    to { left: 100%; }
  }

  /* ===== 品牌故事 ===== */
  .story {
    padding: 140px 56px;
    background: var(--paper);
    position: relative;
    z-index: 2;
  }

  .story-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }

  .story-visual {
    position: relative;
    height: 600px;
  }

  .story-image-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 85%;
    background: linear-gradient(135deg, #D8E4C5 0%, #9BB584 100%);
    border-radius: 300px 300px 40px 40px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(42, 58, 31, 0.2);
  }

  .story-image-overlay {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 30% 20%, rgba(247, 243, 235, 0.4) 0%, transparent 50%),
      radial-gradient(ellipse at 70% 80%, rgba(42, 58, 31, 0.3) 0%, transparent 60%);
  }

  .story-mattress {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
  }

  .story-mattress-layer {
    height: 10px;
    background: linear-gradient(90deg, #F7F3EB 0%, #EFE7D8 50%, #F7F3EB 100%);
    margin-bottom: 2px;
    border-radius: 4px;
    border: 1px solid rgba(42, 58, 31, 0.1);
  }

  .story-pea-tiny {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.8);
  }

  .story-card {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    padding: 40px;
    background: var(--cream);
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(42, 58, 31, 0.12);
  }

  .story-card-quote {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 48px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
  }

  .story-card-text {
    font-family: var(--font-serif-cn);
    font-size: 14px;
    line-height: 1.9;
    color: var(--pea-ink);
  }

  .story-label {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 14px;
    color: var(--gold-deep);
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .story-label::before {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--gold-deep);
  }

  .story-heading {
    font-family: var(--font-serif-cn);
    font-size: 56px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--pea-ink);
    margin-bottom: 36px;
  }

  .story-heading .highlight {
    font-family: var(--font-script-cn);
    color: var(--pea-deep);
    font-weight: 400;
    font-size: 1.15em;
  }

  .story-text {
    font-family: var(--font-serif-cn);
    font-size: 16px;
    line-height: 2;
    color: var(--pea-ink);
    margin-bottom: 28px;
    opacity: 0.85;
  }

  .story-text em {
    font-family: var(--font-serif-en);
    font-style: italic;
    color: var(--pea-deep);
  }

  .story-signature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid rgba(42, 58, 31, 0.15);
  }

  .story-sig-name {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 20px;
    color: var(--pea-ink);
  }

  .story-sig-title {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--pea-deep);
  }

  /* ===== 产品系列 ===== */
  .collections {
    padding: 140px 56px;
    background: linear-gradient(180deg, var(--paper) 0%, var(--pea-ghost) 100%);
    position: relative;
    z-index: 2;
  }

  .section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1400px;
    margin: 0 auto 80px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(42, 58, 31, 0.15);
  }

  .section-head-left {
    max-width: 700px;
  }

  .section-kicker {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 13px;
    color: var(--gold-deep);
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  .section-title {
    font-family: var(--font-serif-cn);
    font-size: 64px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--pea-ink);
    letter-spacing: 2px;
  }

  .section-title .accent {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-weight: 300;
    color: var(--pea-deep);
  }

  .section-head-right {
    font-family: var(--font-serif-cn);
    font-size: 14px;
    line-height: 1.9;
    color: var(--pea-ink);
    max-width: 360px;
    opacity: 0.75;
    padding-bottom: 8px;
  }

  .collection-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .collection-card {
    background: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
  }

  .collection-card:nth-child(even) {
    transform: translateY(40px);
  }

  .collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(42, 58, 31, 0.15);
  }

  .collection-card:nth-child(even):hover {
    transform: translateY(32px);
  }

  .collection-visual {
    height: 280px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .collection-card:nth-child(1) .collection-visual {
    background: linear-gradient(135deg, #EDF2E4 0%, #BCCFA1 100%);
  }
  .collection-card:nth-child(2) .collection-visual {
    background: linear-gradient(135deg, #F5E6D3 0%, #E8C9A8 100%);
  }
  .collection-card:nth-child(3) .collection-visual {
    background: linear-gradient(135deg, #EFE7D8 0%, #D4C5A8 100%);
  }
  .collection-card:nth-child(4) .collection-visual {
    background: linear-gradient(135deg, #E8EFE4 0%, #9BB584 100%);
  }

  .collection-bottle {
    width: 100px;
    height: 160px;
    position: relative;
    transition: transform 0.5s ease;
  }

  .collection-card:hover .collection-bottle {
    transform: translateY(-8px) scale(1.05);
  }

  .collection-bottle-body {
    width: 100%;
    height: 140px;
    position: absolute;
    bottom: 0;
    border-radius: 12px 12px 20px 20px;
    box-shadow:
      inset -12px -4px 20px rgba(0, 0, 0, 0.15),
      inset 6px 2px 12px rgba(255, 255, 255, 0.4),
      0 15px 30px rgba(42, 58, 31, 0.2);
  }

  .collection-card:nth-child(1) .collection-bottle-body {
    background: linear-gradient(180deg, #5C7447 0%, #2A3A1F 100%);
  }
  .collection-card:nth-child(2) .collection-bottle-body {
    background: linear-gradient(180deg, #D4A574 0%, #8B5E3C 100%);
  }
  .collection-card:nth-child(3) .collection-bottle-body {
    background: linear-gradient(180deg, #F7F3EB 0%, #D4C5A8 100%);
  }
  .collection-card:nth-child(4) .collection-bottle-body {
    background: linear-gradient(180deg, #A8C090 0%, #5C7447 100%);
  }

  .collection-bottle-cap {
    width: 40%;
    height: 20px;
    position: absolute;
    top: 0;
    left: 30%;
    background: var(--gold);
    border-radius: 4px 4px 0 0;
  }

  .collection-bottle-label {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--cream);
    background: rgba(247, 243, 235, 0.15);
    padding: 4px 10px;
    border-radius: 2px;
  }

  .collection-card:nth-child(3) .collection-bottle-label {
    color: var(--pea-ink);
    background: rgba(42, 58, 31, 0.1);
  }

  .collection-info {
    padding: 32px 28px;
  }

  .collection-number {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 12px;
    color: var(--gold-deep);
    margin-bottom: 12px;
  }

  .collection-name-cn {
    font-family: var(--font-serif-cn);
    font-size: 24px;
    font-weight: 500;
    color: var(--pea-ink);
    margin-bottom: 4px;
  }

  .collection-name-en {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 16px;
    color: var(--pea-deep);
    margin-bottom: 16px;
    font-weight: 300;
  }

  .collection-desc {
    font-family: var(--font-serif-cn);
    font-size: 13px;
    line-height: 1.8;
    color: var(--pea-ink);
    opacity: 0.75;
    margin-bottom: 20px;
  }

  .collection-link {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--pea-deep);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .collection-link::after {
    content: "→";
    font-size: 14px;
    transition: transform 0.3s;
  }

  .collection-card:hover .collection-link::after {
    transform: translateX(6px);
  }

  /* ===== 敏感肌承诺 ===== */
  .promise {
    padding: 140px 56px;
    background: var(--pea-ink);
    color: var(--cream);
    position: relative;
    z-index: 2;
    overflow: hidden;
  }

  .promise::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
  }

  .promise::after {
    content: "";
    position: absolute;
    bottom: -300px;
    left: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(155, 181, 132, 0.12) 0%, transparent 70%);
  }

  .promise-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .promise-head {
    text-align: center;
    margin-bottom: 100px;
  }

  .promise-kicker {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 24px;
    text-transform: uppercase;
  }

  .promise-title {
    font-family: var(--font-serif-cn);
    font-size: 72px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 4px;
    margin-bottom: 28px;
  }

  .promise-title .gold {
    color: var(--gold);
    font-family: var(--font-script-cn);
    font-weight: 400;
  }

  .promise-sub {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 20px;
    color: var(--pea-soft);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
  }

  .promise-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    margin-bottom: 80px;
  }

  .promise-item {
    text-align: center;
    position: relative;
    padding: 32px 16px;
  }

  .promise-item::before {
    content: attr(data-num);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 120px;
    color: rgba(201, 169, 97, 0.08);
    line-height: 1;
    font-weight: 300;
    pointer-events: none;
  }

  .promise-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
  }

  .promise-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
  }

  .promise-item-title {
    font-family: var(--font-serif-cn);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
  }

  .promise-item-desc {
    font-family: var(--font-serif-cn);
    font-size: 12px;
    line-height: 1.8;
    color: var(--pea-soft);
    position: relative;
    z-index: 1;
  }

  .promise-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 60px 0;
  }

  .promise-divider-line {
    width: 80px;
    height: 1px;
    background: rgba(201, 169, 97, 0.4);
  }

  .promise-divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
  }

  .promise-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }

  .promise-badge {
    text-align: center;
  }

  .promise-badge-num {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 64px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 300;
  }

  .promise-badge-label {
    font-family: var(--font-serif-cn);
    font-size: 13px;
    color: var(--pea-soft);
    letter-spacing: 3px;
  }

  /* ===== 主打产品 ===== */
  .featured {
    padding: 140px 56px;
    background: var(--cream-warm);
    position: relative;
    z-index: 2;
    overflow: hidden;
  }

  .featured-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .featured-visual {
    position: relative;
    height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .featured-jar {
    width: 380px;
    height: 380px;
    position: relative;
    z-index: 2;
  }

  .featured-jar-body {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
      radial-gradient(circle at 30% 25%, #EFE7D8 0%, #D4C5A8 40%, #8B7355 100%);
    box-shadow:
      inset -30px -40px 80px rgba(42, 58, 31, 0.25),
      inset 20px 20px 60px rgba(255, 255, 255, 0.4),
      0 40px 80px rgba(42, 58, 31, 0.2);
    position: relative;
  }

  .featured-jar-top {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 30%;
    background: linear-gradient(180deg, #A08440 0%, #7A6330 100%);
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(42, 58, 31, 0.2);
  }

  .featured-jar-label {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
  }

  .featured-jar-label-name {
    font-family: var(--font-serif-cn);
    font-size: 22px;
    font-weight: 500;
    color: var(--pea-ink);
    letter-spacing: 3px;
    margin-bottom: 4px;
  }

  .featured-jar-label-en {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 11px;
    color: var(--pea-deep);
    letter-spacing: 2px;
  }

  .featured-jar-label-line {
    width: 30px;
    height: 1px;
    background: var(--gold-deep);
    margin: 8px auto;
  }

  .featured-decor {
    position: absolute;
    z-index: 1;
  }

  .featured-decor-1 {
    top: 5%;
    left: 5%;
    width: 180px;
    opacity: 0.5;
    transform: rotate(-20deg);
  }

  .featured-decor-2 {
    bottom: 8%;
    right: 5%;
    width: 160px;
    opacity: 0.5;
    transform: rotate(15deg);
  }

  .featured-tag {
    position: absolute;
    z-index: 3;
    background: var(--paper);
    padding: 14px 20px;
    border-radius: 999px;
    font-family: var(--font-serif-cn);
    font-size: 13px;
    color: var(--pea-ink);
    box-shadow: 0 10px 30px rgba(42, 58, 31, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .featured-tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pea-mid);
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
  }

  .featured-tag-1 {
    top: 15%;
    left: -5%;
  }

  .featured-tag-2 {
    top: 50%;
    right: -5%;
  }

  .featured-tag-3 {
    bottom: 18%;
    left: 8%;
  }

  .featured-kicker {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 13px;
    color: var(--gold-deep);
    letter-spacing: 3px;
    margin-bottom: 24px;
    text-transform: uppercase;
  }

  .featured-title {
    font-family: var(--font-serif-cn);
    font-size: 56px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--pea-ink);
    margin-bottom: 16px;
    letter-spacing: 2px;
  }

  .featured-en-title {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 22px;
    font-weight: 300;
    color: var(--pea-deep);
    margin-bottom: 32px;
  }

  .featured-desc {
    font-family: var(--font-serif-cn);
    font-size: 15px;
    line-height: 2;
    color: var(--pea-ink);
    margin-bottom: 36px;
    opacity: 0.85;
  }

  .featured-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    padding: 28px;
    background: rgba(155, 181, 132, 0.1);
    border-radius: 8px;
  }

  .featured-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .featured-feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: var(--pea-deep);
    fill: none;
    stroke-width: 1.5;
  }

  .featured-feature-text {
    font-family: var(--font-serif-cn);
    font-size: 13px;
    color: var(--pea-ink);
    line-height: 1.6;
  }

  .featured-feature-text strong {
    display: block;
    font-weight: 500;
    color: var(--pea-deep);
    margin-bottom: 2px;
  }

  .featured-price {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
  }

  .featured-price-num {
    font-family: var(--font-serif-en);
    font-size: 40px;
    color: var(--pea-ink);
    font-weight: 500;
  }

  .featured-price-num sup {
    font-size: 18px;
    vertical-align: top;
    margin-right: 2px;
  }

  .featured-price-unit {
    font-family: var(--font-serif-cn);
    font-size: 13px;
    color: var(--pea-deep);
    opacity: 0.75;
  }

  .featured-actions {
    display: flex;
    gap: 16px;
  }

  .btn-primary {
    padding: 18px 36px;
    background: var(--pea-ink);
    color: var(--cream);
    border: none;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
  }

  .btn-primary:hover {
    background: var(--pea-deep);
    transform: translateY(-2px);
  }

  .btn-secondary {
    padding: 18px 36px;
    background: transparent;
    color: var(--pea-ink);
    border: 1px solid var(--pea-ink);
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
  }

  .btn-secondary:hover {
    background: var(--pea-ink);
    color: var(--cream);
  }

  /* ===== Journal ===== */
  .journal {
    padding: 140px 56px;
    background: var(--paper);
    position: relative;
    z-index: 2;
  }

  .journal-inner {
    max-width: 1400px;
    margin: 0 auto;
  }

  .journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .journal-card {
    cursor: pointer;
    transition: all 0.4s ease;
  }

  .journal-card:hover {
    transform: translateY(-6px);
  }

  .journal-image {
    height: 360px;
    border-radius: 4px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
  }

  .journal-card:nth-child(1) .journal-image {
    background: linear-gradient(135deg, #9BB584 0%, #5C7447 100%);
  }

  .journal-card:nth-child(2) .journal-image {
    background: linear-gradient(135deg, #EFE7D8 0%, #D4C5A8 100%);
  }

  .journal-card:nth-child(3) .journal-image {
    background: linear-gradient(135deg, #D8E4C5 0%, #BCCFA1 100%);
  }

  .journal-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, transparent 40%, rgba(42, 58, 31, 0.15) 100%);
  }

  .journal-image-num {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 180px;
    color: rgba(247, 243, 235, 0.3);
    font-weight: 300;
    line-height: 1;
  }

  .journal-card:nth-child(2) .journal-image-num {
    color: rgba(42, 58, 31, 0.15);
  }

  .journal-meta {
    display: flex;
    gap: 16px;
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 12px;
    color: var(--gold-deep);
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
  }

  .journal-title {
    font-family: var(--font-serif-cn);
    font-size: 22px;
    font-weight: 500;
    color: var(--pea-ink);
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .journal-excerpt {
    font-family: var(--font-serif-cn);
    font-size: 13px;
    line-height: 1.8;
    color: var(--pea-ink);
    opacity: 0.75;
    margin-bottom: 16px;
  }

  .journal-read {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 13px;
    color: var(--pea-deep);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .journal-read::after {
    content: "→";
    transition: transform 0.3s;
  }

  .journal-card:hover .journal-read::after {
    transform: translateX(4px);
  }

  /* ===== Newsletter ===== */
  .newsletter {
    padding: 120px 56px;
    background: linear-gradient(135deg, var(--pea-ghost) 0%, var(--pea-light) 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
  }

  .newsletter::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(92, 116, 71, 0.1) 0%, transparent 70%);
    transform: translateY(-50%);
  }

  .newsletter::after {
    content: "";
    position: absolute;
    top: 20%;
    right: 15%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
  }

  .newsletter-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .newsletter-kicker {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 13px;
    color: var(--gold-deep);
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  .newsletter-title {
    font-family: var(--font-serif-cn);
    font-size: 56px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--pea-ink);
    margin-bottom: 20px;
    letter-spacing: 2px;
  }

  .newsletter-title .script {
    font-family: var(--font-script-cn);
    color: var(--pea-deep);
  }

  .newsletter-desc {
    font-family: var(--font-serif-cn);
    font-size: 14px;
    line-height: 1.9;
    color: var(--pea-ink);
    opacity: 0.8;
    margin-bottom: 40px;
  }

  .newsletter-form {
    display: flex;
    max-width: 520px;
    margin: 0 auto 20px;
    background: var(--paper);
    border-radius: 999px;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(42, 58, 31, 0.08);
  }

  .newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    background: transparent;
    font-family: var(--font-serif-cn);
    font-size: 14px;
    color: var(--pea-ink);
    outline: none;
  }

  .newsletter-input::placeholder {
    color: var(--pea-mid);
  }

  .newsletter-btn {
    padding: 14px 28px;
    background: var(--pea-ink);
    color: var(--cream);
    border: none;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: inherit;
  }

  .newsletter-btn:hover {
    background: var(--pea-deep);
  }

  .newsletter-gift {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 12px;
    color: var(--pea-deep);
    letter-spacing: 1px;
  }

  /* ===== Footer ===== */
  .footer {
    padding: 80px 56px 40px;
    background: var(--pea-ink);
    color: var(--pea-soft);
    position: relative;
    z-index: 2;
  }

  .footer-inner {
    max-width: 1400px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(247, 243, 235, 0.1);
  }

  .footer-brand-name {
    font-family: var(--font-serif-cn);
    font-size: 28px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 8px;
    letter-spacing: 3px;
  }

  .footer-brand-en {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 24px;
  }

  .footer-brand-desc {
    font-family: var(--font-serif-cn);
    font-size: 13px;
    line-height: 1.9;
    color: var(--pea-soft);
    max-width: 320px;
    opacity: 0.8;
  }

  .footer-col h4 {
    font-family: var(--font-serif-cn);
    font-size: 14px;
    color: var(--cream);
    margin-bottom: 24px;
    letter-spacing: 3px;
    font-weight: 500;
  }

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

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

  .footer-col a {
    text-decoration: none;
    color: var(--pea-soft);
    font-size: 13px;
    transition: color 0.3s;
  }

  .footer-col a:hover {
    color: var(--gold);
  }

  .footer-bottom {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--pea-soft);
    opacity: 0.6;
  }

  .footer-social {
    display: flex;
    gap: 20px;
  }

  .footer-social a {
    color: var(--pea-soft);
    text-decoration: none;
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 13px;
    letter-spacing: 2px;
    transition: color 0.3s;
  }

  .footer-social a:hover {
    color: var(--gold);
  }

  /* ===== 滚动动画 ===== */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
  }

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

  /* ===== 响应式 ===== */
  @media (max-width: 1024px) {
    .nav-menu { display: none; }
    .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; }
    .hero-right { height: 400px; }
    .hero-circle { width: 340px; height: 340px; }
    .story-inner { grid-template-columns: 1fr; gap: 60px; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 32px; }
    .collection-grid { grid-template-columns: repeat(2, 1fr); }
    .collection-card:nth-child(even) { transform: none; }
    .promise-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-inner { grid-template-columns: 1fr; }
    .journal-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 54px; }
    .section-title, .promise-title, .featured-title, .newsletter-title, .story-heading { font-size: 42px; }
  }

  /* ================================================================
   * WordPress 兼容补丁：文章页 / 页面 / 搜索 / 404 / 评论 / 搜索框
   * ================================================================ */

  .site-main { position: relative; z-index: 2; }

  .archive-main,
  .single-main,
  .page-main,
  .error-main {
    padding: 160px 56px 120px;
    max-width: 1280px;
    margin: 0 auto;
    min-height: 60vh;
  }

  .archive-head {
    text-align: center;
    margin-bottom: 80px;
  }

  .archive-head .section-kicker { justify-content: center; margin-bottom: 24px; }
  .archive-head .section-title  { font-size: clamp(40px, 5vw, 72px); }
  .archive-desc                  { max-width: 620px; margin: 24px auto 0; color: var(--pea-deep); font-family: var(--font-serif-cn); line-height: 1.9; }

  /* 单篇文章 */
  .single-article { max-width: 760px; margin: 0 auto; }
  .single-head    { text-align: center; margin-bottom: 48px; }
  .single-head .section-kicker { justify-content: center; margin-bottom: 24px; }
  .single-title   {
    font-family: var(--font-serif-cn);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--pea-ink);
    margin-bottom: 24px;
    letter-spacing: 1px;
  }
  .single-meta {
    display: flex; justify-content: center; gap: 12px;
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 13px;
    color: var(--pea-deep);
    letter-spacing: 1px;
    opacity: 0.8;
  }
  .single-meta-sep { opacity: 0.5; }
  .single-thumb    { margin: 48px 0; border-radius: 4px; overflow: hidden; }
  .single-thumb img { display: block; width: 100%; height: auto; }

  .single-content {
    font-family: var(--font-serif-cn);
    font-size: 16px;
    line-height: 2;
    color: var(--pea-ink);
  }
  .single-content p   { margin-bottom: 1.6em; }
  .single-content h2  { font-family: var(--font-serif-cn); font-size: 28px; font-weight: 500; margin: 2em 0 0.8em; color: var(--pea-ink); letter-spacing: 1px; }
  .single-content h3  { font-family: var(--font-serif-cn); font-size: 22px; font-weight: 500; margin: 1.8em 0 0.6em; color: var(--pea-ink); }
  .single-content h4  { font-family: var(--font-serif-en); font-style: italic; font-size: 18px; margin: 1.6em 0 0.5em; color: var(--pea-deep); }
  .single-content a   { color: var(--pea-deep); border-bottom: 1px solid var(--pea-soft); text-decoration: none; transition: border-color 0.3s; }
  .single-content a:hover { border-color: var(--pea-deep); }
  .single-content blockquote {
    margin: 2em 0;
    padding: 1.2em 1.8em;
    border-left: 2px solid var(--pea-deep);
    background: var(--pea-ghost);
    font-family: var(--font-serif-en);
    font-style: italic;
    color: var(--pea-deep);
  }
  .single-content ul, .single-content ol { margin: 1.2em 0 1.6em 1.4em; }
  .single-content li  { margin-bottom: 0.6em; }
  .single-content img, .single-content figure { max-width: 100%; height: auto; border-radius: 4px; margin: 2em 0; }
  .single-content code {
    background: var(--cream-warm);
    padding: 2px 8px;
    border-radius: 3px;
    font-family: "SF Mono", Menlo, Consolas, monospace;
    font-size: 0.9em;
  }
  .single-content pre {
    background: var(--ink);
    color: var(--cream);
    padding: 1.4em;
    border-radius: 4px;
    overflow-x: auto;
    margin: 2em 0;
  }
  .single-content pre code { background: none; padding: 0; color: inherit; }

  .single-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(42, 58, 31, 0.15);
  }
  .single-tags {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 13px;
    color: var(--pea-deep);
    margin-bottom: 32px;
    letter-spacing: 1px;
  }
  .single-tags a { color: var(--pea-deep); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s; }
  .single-tags a:hover { border-color: var(--pea-deep); }

  .single-nav {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    font-family: var(--font-serif-cn);
    font-size: 14px;
  }
  .single-nav a { color: var(--pea-ink); text-decoration: none; transition: color 0.3s; }
  .single-nav a:hover { color: var(--pea-deep); }
  .single-nav-next { text-align: right; }

  /* 分页 */
  .archive-pagination {
    margin-top: 80px;
    text-align: center;
    font-family: var(--font-serif-en);
    font-size: 14px;
    letter-spacing: 2px;
  }
  .archive-pagination .nav-links { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
  .archive-pagination a,
  .archive-pagination .current {
    display: inline-block;
    padding: 10px 18px;
    min-width: 44px;
    border-radius: 999px;
    color: var(--pea-ink);
    text-decoration: none;
    background: var(--cream);
    transition: all 0.3s;
  }
  .archive-pagination a:hover { background: var(--pea-light); }
  .archive-pagination .current { background: var(--pea-ink); color: var(--cream); }

  .archive-empty {
    text-align: center;
    font-family: var(--font-serif-cn);
    color: var(--pea-deep);
    font-size: 16px;
    padding: 80px 0;
  }

  /* 404 */
  .error-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 0;
  }
  .error-inner .section-kicker { justify-content: center; margin-bottom: 28px; }
  .error-title {
    font-family: var(--font-serif-cn);
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--pea-ink);
    margin-bottom: 28px;
    letter-spacing: 2px;
  }
  .error-title .accent {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-weight: 300;
    color: var(--pea-deep);
  }
  .error-desc {
    font-family: var(--font-serif-cn);
    font-size: 15px;
    line-height: 2;
    color: var(--pea-deep);
  }

  /* 搜索表单 */
  .search-form {
    display: inline-flex;
    align-items: center;
    gap: 0;
    max-width: 460px;
    width: 100%;
    border-bottom: 1px solid var(--pea-deep);
    padding-bottom: 6px;
  }
  .search-field {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 0;
    font-family: var(--font-serif-cn);
    font-size: 15px;
    color: var(--pea-ink);
    outline: none;
  }
  .search-field::placeholder { color: var(--pea-soft); font-style: italic; }
  .search-submit {
    border: none;
    background: transparent;
    color: var(--pea-deep);
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 13px;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 10px 16px;
    transition: color 0.3s;
  }
  .search-submit:hover { color: var(--pea-ink); }
  .screen-reader-text {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }

  /* 评论 */
  .comments-area {
    max-width: 760px;
    margin: 80px auto 0;
    padding-top: 48px;
    border-top: 1px solid rgba(42, 58, 31, 0.15);
    font-family: var(--font-serif-cn);
  }
  .comments-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--pea-ink);
    margin-bottom: 40px;
    letter-spacing: 1px;
  }
  .comment-list { list-style: none; padding: 0; }
  .comment-list li { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px dashed rgba(42, 58, 31, 0.1); }
  .comment-list .children { list-style: none; margin: 24px 0 0 32px; padding: 0; }
  .comment-author { font-weight: 500; color: var(--pea-ink); }
  .comment-meta a { color: var(--pea-deep); font-family: var(--font-serif-en); font-style: italic; font-size: 12px; text-decoration: none; }
  .comment-body { font-size: 15px; line-height: 1.9; color: var(--pea-ink); }
  #respond { margin-top: 48px; }
  #respond h3 { font-size: 18px; font-weight: 500; margin-bottom: 24px; }
  .comment-form label { display: block; font-size: 13px; margin-bottom: 6px; color: var(--pea-deep); letter-spacing: 1px; }
  .comment-form input[type="text"],
  .comment-form input[type="email"],
  .comment-form input[type="url"],
  .comment-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(42, 58, 31, 0.15);
    background: var(--cream);
    border-radius: 4px;
    font-family: var(--font-serif-cn);
    font-size: 14px;
    color: var(--pea-ink);
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s;
  }
  .comment-form input:focus,
  .comment-form textarea:focus { border-color: var(--pea-deep); }
  .comment-form .submit {
    padding: 12px 32px;
    background: var(--pea-ink);
    color: var(--cream);
    border: none;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s;
  }
  .comment-form .submit:hover { background: var(--pea-deep); }

  /* WP 内容对齐样式（Gutenberg 需要） */
  .alignleft   { float: left;  margin: 0 24px 16px 0; }
  .alignright  { float: right; margin: 0 0 16px 24px; }
  .aligncenter { display: block; margin-left: auto; margin-right: auto; }
  .alignwide   { max-width: 100%; }
  .alignfull   { max-width: 100vw; margin-left: calc(50% - 50vw); }

  /* 自定义 LOGO（如果上传了图片 Logo） */
  .custom-logo-link { display: inline-flex; align-items: center; margin-right: 10px; }
  .custom-logo { max-height: 44px; width: auto; }

  /* 响应式 */
  @media (max-width: 768px) {
    .archive-main,
    .single-main,
    .page-main,
    .error-main { padding: 120px 20px 80px; }
    .single-nav { flex-direction: column; gap: 20px; }
    .single-nav-next { text-align: left; }
  }
