.publish-hero {
  padding: 140px 44px 60px;
  text-align: center;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(199,156,123,.22), transparent 55%),
    var(--paper);
}
.publish-hero h1 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(44px, 5.4vw, 68px);
  color: var(--brown);
  margin: 0;
  letter-spacing: -.01em;
  line-height: 1.1;
}
[data-lang="cn"] .publish-hero h1 { font-family: var(--font-body); font-weight: 700; letter-spacing: .02em; }
[data-lang="cn"] .section-title,
[data-lang="cn"] .service-head h3,
[data-lang="cn"] .wish-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .02em;
}

.pub-section {
  padding: 80px 44px;
  background: var(--paper);
}
.pub-section.alt {
  background: linear-gradient(160deg, var(--sage) 0%, var(--cream) 100%);
}
.pub-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--brown);
  margin: 0 0 30px;
  line-height: 1.15;
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
}
.section-title::before {
  content: "";
  width: 40px; height: 3px;
  background: var(--tan);
  border-radius: 2px;
  transform: translateY(-8px);
}
.section-lead {
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink);
  opacity: .88;
  max-width: 960px;
  margin: 0 0 44px;
}

/* Showcase (观鸟笔记缩略图) */
.showcase {
  display: grid;
  grid-template-columns: minmax(280px, 400px) 1fr;
  gap: 40px;
  align-items: center;
}
.showcase-thumb {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 460 / 215;
  transition: transform .3s ease;
}
.showcase-thumb:hover { transform: translateY(-4px); }
.showcase-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(30,20,14,.72) 0%, rgba(30,20,14,0) 55%);
  color: var(--paper);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 8px;
  padding: 20px;
  opacity: 0;
  transition: opacity .25s ease;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: .06em;
}
.showcase-thumb:hover .showcase-overlay { opacity: 1; }
.showcase-overlay i { font-size: 18px; color: var(--tan); }
.showcase-text p {
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 22px;
}
.socials.small { justify-content: flex-start; gap: 10px; }
.socials.small .social {
  background: rgba(86,64,47,.06);
  border: 1px solid rgba(86,64,47,.15);
  color: var(--brown);
}
.socials.small .social:hover {
  background: var(--tan);
  color: var(--paper);
  border-color: var(--tan);
}

/* Service grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 28px 26px;
  border: 1px solid rgba(86,64,47,.08);
  box-shadow: 0 12px 24px -18px rgba(86,64,47,.3);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-head i {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brown);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex: 0 0 auto;
}
.service-head h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  color: var(--brown);
  margin: 0;
  line-height: 1.2;
}
.service-card ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 10px;
}
.service-card li {
  position: relative;
  padding-left: 22px;
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--ink);
  opacity: .92;
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 4px; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--tan);
}

/* Wish grid */
.wish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.wish-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 32px 30px;
  border: 1px solid rgba(86,64,47,.08);
  box-shadow: 0 12px 24px -18px rgba(86,64,47,.3);
}
.wish-card.provide {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-2) 100%);
  color: var(--paper);
  border-color: transparent;
}
.wish-card h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 26px;
  margin: 0 0 22px;
  color: var(--brown);
  line-height: 1.2;
}
.wish-card.provide h3 { color: var(--paper); }
.wish-card ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 16px;
}
.wish-card li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
}
.wish-card.provide li { color: rgba(247,245,234,.92); }
.wish-card li > i {
  flex: 0 0 auto;
  font-size: 18px;
  color: var(--tan);
  margin-top: 2px;
}

.pub-cta {
  text-align: center;
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.cta-line {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 32px;
  color: var(--brown);
  font-weight: 500;
  margin: 0;
  letter-spacing: .02em;
}
[data-lang="cn"] .cta-line {
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .04em;
}
.pub-cta .btn-primary {
  background: var(--brown);
  color: var(--paper);
  padding: 18px 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all .25s;
}
.pub-cta .btn-primary i { font-size: 22px; }
.pub-cta .btn-primary:hover {
  background: var(--tan);
  color: var(--brown-2);
}

@media (max-width: 960px) {
  .publish-hero { padding: 120px 20px 50px; }
  .pub-section { padding: 60px 20px; }
  .showcase { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .wish-grid { grid-template-columns: 1fr; }
}
