/* Ying design system implementation. */
:root {
  --ying-bg: #f3f0eb;
  --ying-card: #eceae4;
  --ying-white: #faf9f6;
  --ying-dark: #1c1a14;
  --ying-dark-2: #2a2820;
  --ying-dark-3: #32302a;
  --ying-text: #1c1a14;
  --ying-mid: #5a5750;
  --ying-muted: #9a9690;
  --ying-accent: #9e4a1e;
  --ying-accent-hover: #c4652a;
  --ying-sand: #e8d5b0;
  --ying-gold: #b09a72;
  --ying-border: rgba(28, 26, 20, 0.08);
  --ying-border-dark: rgba(250, 249, 246, 0.08);
  --ying-serif: "Noto Serif TC", Georgia, serif;
  --ying-sans: "Noto Sans TC", "PingFang TC", sans-serif;
}

body {
  background: var(--ying-bg);
  color: var(--ying-text);
  font-family: var(--ying-sans);
  font-weight: 300;
  letter-spacing: 0.02em;
}

body.home,
body.page-template-page-service {
  --container-max-width: 1100px;
  --container-padding: 40px;
}

body.home h1,
body.home h2,
body.home h3,
body.page-template-page-service h1,
body.page-template-page-service h2,
body.page-template-page-service h3 {
  font-family: var(--ying-serif);
  font-weight: 600;
  letter-spacing: 1px;
}

body.home p,
body.page-template-page-service p {
  max-width: none;
}

.ying-home-nav,
.ying-home-footer,
.ying-template-home {
  --bg: var(--ying-bg);
  --bg-card: var(--ying-card);
  --dark: var(--ying-dark);
  --dark2: var(--ying-dark-2);
  --text: var(--ying-text);
  --mid: var(--ying-mid);
  --muted: var(--ying-muted);
  --accent: var(--ying-accent);
  --accent2: var(--ying-accent-hover);
  --gold: var(--ying-gold);
  --white: var(--ying-white);
  --serif: var(--ying-serif);
  --sans: var(--ying-sans);
  --max: 1100px;
}

.ying-home-nav .wrap,
.ying-home-footer .wrap,
.ying-template-home .wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

.ying-home-nav {
  backdrop-filter: blur(8px);
  background: rgba(243, 240, 235, 0.95);
  border-bottom: 1px solid rgba(28, 26, 20, 0.08);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.ying-home-nav .nav-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.ying-home-nav .logo,
.ying-home-footer .footer-logo {
  color: var(--text);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  text-decoration: none;
}

.ying-home-nav .logo::before,
.ying-home-nav .logo::after,
.ying-home-footer .footer-logo::before,
.ying-home-footer .footer-logo::after {
  content: none;
}

.ying-home-nav .logo sup,
.ying-home-footer .footer-logo sup {
  color: var(--gold);
  font-size: 9px;
  margin-left: 1px;
}

.ying-home-nav .nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ying-home-nav .nav-links a {
  color: var(--muted);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.ying-home-nav .nav-links a:hover {
  color: var(--text);
}

.ying-home-nav .nav-cta {
  background: var(--dark);
  border-radius: 2px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 2px;
  padding: 10px 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s;
}

.ying-home-nav .nav-cta:hover {
  background: var(--accent);
  color: var(--white);
}

.ying-template-home {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.8;
}

.ying-template-home .hero {
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  position: relative;
}

.ying-template-home .hero-img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center 30%;
  position: absolute;
  width: 100%;
}

.ying-template-home .hero-overlay {
  background: linear-gradient(to right, rgba(28, 26, 20, 0.72) 0%, rgba(28, 26, 20, 0.2) 60%, rgba(28, 26, 20, 0.05) 100%);
  inset: 0;
  position: absolute;
}

.ying-template-home .hero-content {
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  max-width: 700px;
  padding: 0 80px;
  position: absolute;
}

.ying-template-home .hero-eyebrow {
  align-items: center;
  color: rgba(250, 249, 246, 0.55);
  display: flex;
  font-size: 10px;
  gap: 12px;
  letter-spacing: 5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.ying-template-home .hero-eyebrow::before {
  background: rgba(250, 249, 246, 0.35);
  content: "";
  height: 1px;
  width: 32px;
}

.ying-template-home .hero-title {
  color: var(--white);
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.3;
  margin: 0 0 24px;
}

.ying-template-home .hero-title span {
  color: #e8d5b0;
}

.ying-template-home .hero-sub {
  color: rgba(250, 249, 246, 0.7);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  margin: 0 0 40px;
  max-width: 420px;
}

.ying-template-home .hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ying-template-home .btn-hero-primary,
.ying-template-home .btn-hero-ghost {
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 13px 28px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
}

.ying-template-home .btn-hero-primary {
  background: var(--accent);
  color: var(--white);
}

.ying-template-home .btn-hero-primary:hover {
  background: var(--accent2);
  color: var(--white);
}

.ying-template-home .btn-hero-ghost {
  border: 1px solid rgba(250, 249, 246, 0.3);
  color: rgba(250, 249, 246, 0.8);
  padding: 12px 28px;
}

.ying-template-home .btn-hero-ghost:hover {
  border-color: rgba(250, 249, 246, 0.7);
  color: var(--white);
}

.ying-template-home .hero-scroll {
  align-items: center;
  bottom: 36px;
  color: rgba(250, 249, 246, 0.4);
  display: flex;
  flex-direction: column;
  font-size: 10px;
  gap: 8px;
  left: 50%;
  letter-spacing: 3px;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.ying-template-home .hero-scroll::after {
  background: rgba(250, 249, 246, 0.25);
  content: "";
  height: 40px;
  width: 1px;
}

.ying-template-home .cred-bar {
  background: var(--dark2);
  padding: 20px 0;
}

.ying-template-home .cred-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
}

.ying-template-home .cred-item {
  align-items: center;
  border-right: 1px solid rgba(250, 249, 246, 0.08);
  color: rgba(250, 249, 246, 0.55);
  display: flex;
  font-size: 12px;
  gap: 10px;
  letter-spacing: 1px;
  padding: 0 36px;
}

.ying-template-home .cred-item:last-child {
  border-right: 0;
}

.ying-template-home .cred-item img {
  border-radius: 50%;
  filter: grayscale(30%);
  height: 20px;
  object-fit: cover;
  opacity: 0.7;
  width: 20px;
}

.ying-template-home .cred-strong {
  color: rgba(250, 249, 246, 0.85);
  font-weight: 500;
}

.ying-template-home .about {
  border-bottom: 1px solid rgba(28, 26, 20, 0.08);
  padding: 100px 0;
}

.ying-template-home .about-inner {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 420px;
}

.ying-template-home .about-eyebrow,
.ying-template-home .nl-eyebrow,
.ying-template-home .worlds-eyebrow,
.ying-template-home .svc-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.ying-template-home .about-eyebrow,
.ying-template-home .nl-eyebrow {
  color: var(--accent);
}

.ying-template-home .worlds-eyebrow {
  color: var(--muted);
  margin-bottom: 14px;
}

.ying-template-home .svc-eyebrow {
  color: rgba(250, 249, 246, 0.3);
  margin-bottom: 14px;
}

.ying-template-home .about-title {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.4;
  margin: 0 0 28px;
}

.ying-template-home .about-body {
  color: var(--mid);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.95;
  margin: 0 0 16px;
}

.ying-template-home .about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 36px;
}

.ying-template-home .about-tag {
  border: 1px solid rgba(28, 26, 20, 0.15);
  border-radius: 999px;
  color: var(--mid);
  font-size: 10px;
  letter-spacing: 2px;
  padding: 5px 14px;
  text-transform: uppercase;
}

.ying-template-home .about-img {
  aspect-ratio: 3 / 4;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.ying-template-home .about-img img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.ying-template-home .about-img-caption {
  background: linear-gradient(to top, rgba(28, 26, 20, 0.6), transparent);
  bottom: 0;
  color: rgba(250, 249, 246, 0.65);
  font-size: 10px;
  left: 0;
  letter-spacing: 2px;
  padding: 24px 20px 16px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
}

.ying-template-home .btn-text {
  align-items: center;
  border-bottom: 1px solid rgba(158, 74, 30, 0.3);
  color: var(--accent);
  display: inline-flex;
  font-size: 11px;
  gap: 8px;
  letter-spacing: 2px;
  padding-bottom: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.2s;
}

.ying-template-home .btn-text:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.ying-template-home .newsletter {
  background: var(--dark);
  overflow: hidden;
  padding: 100px 0;
  position: relative;
}

.ying-template-home .newsletter::before {
  background: rgba(158, 74, 30, 0.06);
  border-radius: 50%;
  content: "";
  height: 600px;
  pointer-events: none;
  position: absolute;
  right: -100px;
  top: -200px;
  width: 600px;
}

.ying-template-home .nl-inner {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
}

.ying-template-home .nl-title {
  color: var(--white);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.4;
  margin: 0 0 20px;
}

.ying-template-home .nl-tagline {
  color: rgba(250, 249, 246, 0.65);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: 0 0 16px;
}

.ying-template-home .nl-desc {
  color: rgba(250, 249, 246, 0.5);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  margin: 0 0 28px;
}

.ying-template-home .nl-themes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.ying-template-home .nl-theme {
  align-items: flex-start;
  display: flex;
  gap: 20px;
}

.ying-template-home .nl-theme + .nl-theme {
  border-top: 1px solid rgba(250, 249, 246, 0.07);
  padding-top: 24px;
}

.ying-template-home .nl-theme-num {
  color: var(--accent);
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 2px;
  min-width: 24px;
  padding-top: 3px;
}

.ying-template-home .nl-theme-title {
  color: rgba(250, 249, 246, 0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0 0 5px;
}

.ying-template-home .nl-theme-desc {
  color: rgba(250, 249, 246, 0.4);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  margin: 0;
}

.ying-template-home .nl-form {
  display: flex;
  gap: 10px;
}

.ying-template-home .nl-input {
  background: rgba(250, 249, 246, 0.08);
  border: 1px solid rgba(250, 249, 246, 0.12);
  border-radius: 2px;
  color: var(--white);
  flex: 1;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.5px;
  outline: none;
  padding: 12px 16px;
  transition: border-color 0.2s;
}

.ying-template-home .nl-input:focus {
  border-color: rgba(250, 249, 246, 0.35);
}

.ying-template-home .nl-input::placeholder {
  color: rgba(250, 249, 246, 0.25);
}

.ying-template-home .btn-nl {
  background: var(--accent);
  border: 0;
  border-radius: 2px;
  color: var(--white);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1.5px;
  padding: 12px 22px;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}

.ying-template-home .btn-nl:hover {
  background: var(--accent2);
}

.ying-template-home .nl-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ying-template-home .nl-stat-row {
  border-bottom: 1px solid rgba(250, 249, 246, 0.08);
  border-top: 1px solid rgba(250, 249, 246, 0.08);
  display: flex;
  gap: 48px;
  padding: 32px 0;
}

.ying-template-home .nl-stat-num {
  color: var(--white);
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 6px;
}

.ying-template-home .nl-stat-label {
  color: rgba(250, 249, 246, 0.35);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ying-template-home .nl-quote {
  border-left: 2px solid rgba(158, 74, 30, 0.4);
  color: rgba(250, 249, 246, 0.55);
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.85;
  margin: 0;
  padding-left: 18px;
}

.ying-template-home .nl-fine {
  color: rgba(250, 249, 246, 0.25);
  font-size: 11px;
  letter-spacing: 1px;
  margin: 0;
}

.ying-template-home .nl-fine--left {
  margin-top: 14px;
}

.ying-template-home .worlds,
.ying-template-home .posts {
  border-bottom: 1px solid rgba(28, 26, 20, 0.08);
  padding: 100px 0;
}

.ying-template-home .worlds-header {
  margin-bottom: 52px;
}

.ying-template-home .worlds-title,
.ying-template-home .svc-title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  margin: 0;
}

.ying-template-home .worlds-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.ying-template-home .world-card {
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.ying-template-home .world-card img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  width: 100%;
}

.ying-template-home .world-card:hover img {
  transform: scale(1.04);
}

.ying-template-home .world-overlay {
  background: linear-gradient(to top, rgba(28, 26, 20, 0.8) 0%, rgba(28, 26, 20, 0.15) 55%);
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: flex-end;
  padding: 32px;
  position: absolute;
}

.ying-template-home .world-label {
  color: rgba(250, 249, 246, 0.5);
  font-size: 10px;
  letter-spacing: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.ying-template-home .world-title {
  color: var(--white);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.4;
  margin: 0 0 10px;
}

.ying-template-home .world-desc {
  color: rgba(250, 249, 246, 0.65);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  margin: 0 0 20px;
}

.ying-template-home .world-link {
  align-items: center;
  border-bottom: 1px solid rgba(250, 249, 246, 0.25);
  color: rgba(250, 249, 246, 0.75);
  display: inline-flex;
  font-size: 10px;
  gap: 6px;
  letter-spacing: 2.5px;
  padding-bottom: 2px;
  text-transform: uppercase;
}

.ying-template-home .posts-header {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}

.ying-template-home .posts-title {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0;
}

.ying-template-home .posts-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}

.ying-template-home .post-card {
  color: var(--text);
  display: block;
  text-decoration: none;
}

.ying-template-home .post-img {
  aspect-ratio: 3 / 2;
  background: var(--bg-card);
  border-radius: 2px;
  display: block;
  margin-bottom: 18px;
  overflow: hidden;
}

.ying-template-home .post-img img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  width: 100%;
}

.ying-template-home .post-card:hover .post-img img {
  transform: scale(1.04);
}

.ying-template-home .post-cat {
  color: var(--accent);
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.ying-template-home .post-title {
  color: var(--text);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.55;
  margin: 0 0 10px;
}

.ying-template-home .post-excerpt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  margin: 0 0 12px;
}

.ying-template-home .post-date {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 2px;
}

.ying-template-home .services {
  background: var(--dark);
  padding: 100px 0;
}

.ying-template-home .svc-header {
  margin-bottom: 52px;
}

.ying-template-home .svc-title {
  color: var(--white);
  font-size: 34px;
}

.ying-template-home .svc-grid {
  background: rgba(250, 249, 246, 0.06);
  border: 1px solid rgba(250, 249, 246, 0.06);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.ying-template-home .svc-card {
  background: var(--dark2);
  color: var(--white);
  display: block;
  padding: 36px 28px;
  position: relative;
  text-decoration: none;
  transition: background 0.2s;
}

.ying-template-home .svc-card:hover {
  background: #32302a;
  color: var(--white);
}

.ying-template-home .svc-card--soon {
  cursor: default;
  opacity: 0.45;
}

.ying-template-home .svc-card--soon:hover {
  background: var(--dark2);
}

.ying-template-home .svc-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ying-template-home .svc-type {
  background: rgba(250, 249, 246, 0.07);
  border-radius: 999px;
  color: rgba(250, 249, 246, 0.35);
  font-size: 10px;
  letter-spacing: 2px;
  padding: 4px 10px;
  text-transform: uppercase;
}

.ying-template-home .svc-type--hot {
  background: rgba(232, 213, 176, 0.1);
  color: #e8d5b0;
}

.ying-template-home .svc-type--soon {
  background: rgba(250, 249, 246, 0.04);
  color: rgba(250, 249, 246, 0.2);
}

.ying-template-home .svc-price-tag {
  color: rgba(250, 249, 246, 0.55);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.ying-template-home .svc-price-tag--accent {
  color: #e8d5b0;
}

.ying-template-home .svc-card--free {
  border-top: 2px solid rgba(250, 249, 246, 0.15);
}

.ying-template-home .svc-card--main {
  border-top: 2px solid var(--accent);
}

.ying-template-home .svc-title-card {
  color: var(--white);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.4;
  margin: 0 0 10px;
}

.ying-template-home .svc-desc {
  color: rgba(250, 249, 246, 0.45);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  margin: 0 0 20px;
}

.ying-template-home .svc-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 16px 0 24px;
  padding: 0;
}

.ying-template-home .svc-includes li {
  color: rgba(250, 249, 246, 0.38);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.ying-template-home .svc-includes li::before {
  color: rgba(250, 249, 246, 0.2);
  content: "—";
  font-size: 10px;
  left: 0;
  position: absolute;
}

.ying-template-home .svc-card--main .svc-includes li {
  color: rgba(250, 249, 246, 0.55);
}

.ying-template-home .svc-card--main .svc-includes li::before {
  color: var(--accent);
}

.ying-template-home .svc-cta {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ying-template-home .svc-cta--accent {
  color: #e8d5b0;
}

.ying-template-home .svc-card--soon .svc-cta {
  color: rgba(250, 249, 246, 0.2);
}

.ying-home-footer {
  background: var(--bg);
  border-top: 1px solid rgba(28, 26, 20, 0.1);
  padding: 60px 0 36px;
}

.ying-home-footer .footer-inner {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 48px;
}

.ying-home-footer .footer-logo {
  display: block;
  font-size: 18px;
  margin-bottom: 14px;
}

.ying-home-footer .footer-bio {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
}

.ying-home-footer .footer-heading {
  color: var(--muted);
  display: block;
  font-size: 10px;
  letter-spacing: 4px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.ying-home-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ying-home-footer .footer-links a {
  color: var(--mid);
  font-size: 13px;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.2s;
}

.ying-home-footer .footer-links a:hover {
  color: var(--accent);
}

.ying-home-footer .footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}

.ying-home-footer .footer-social {
  border-bottom: 1px solid rgba(28, 26, 20, 0.12);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 1.5px;
  padding-bottom: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.ying-home-footer .footer-social:hover {
  color: var(--accent);
}

.ying-home-footer .footer-cta-body {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  margin: 0 0 16px;
}

.ying-home-footer .footer-cta-btn {
  align-items: center;
  background: var(--dark);
  border-radius: 2px;
  color: var(--white);
  display: inline-flex;
  font-size: 11px;
  letter-spacing: 1px;
  min-height: 40px;
  padding: 0 16px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.ying-home-footer .footer-cta-btn:hover {
  background: var(--accent);
}

.ying-home-footer .footer-nl {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.ying-home-footer .footer-nl-input {
  background: transparent;
  border: 1px solid rgba(28, 26, 20, 0.15);
  border-radius: 2px;
  color: var(--text);
  flex: 1;
  font-family: var(--sans);
  font-size: 12px;
  outline: none;
  padding: 9px 12px;
  transition: border-color 0.2s;
}

.ying-home-footer .footer-nl-input:focus {
  border-color: var(--accent);
}

.ying-home-footer .footer-nl-input::placeholder {
  color: var(--muted);
}

.ying-home-footer .footer-nl-btn {
  background: var(--dark);
  border: 0;
  border-radius: 2px;
  color: var(--white);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1px;
  padding: 9px 16px;
  transition: background 0.2s;
  white-space: nowrap;
}

.ying-home-footer .footer-nl-btn:hover {
  background: var(--accent);
}

.ying-home-footer .footer-bottom {
  border-top: 1px solid rgba(28, 26, 20, 0.08);
  color: var(--muted);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: 1.5px;
  padding-top: 28px;
}

@media (max-width: 900px) {
  .ying-home-nav .wrap,
  .ying-home-footer .wrap,
  .ying-template-home .wrap {
    padding: 0 24px;
  }

  .ying-home-nav .nav-links {
    display: none;
  }

  .ying-template-home .hero-content {
    max-width: 100%;
    padding: 0 32px;
  }

  .ying-template-home .hero-title {
    font-size: 38px;
  }

  .ying-template-home .about-inner,
  .ying-template-home .nl-inner {
    grid-template-columns: 1fr;
  }

  .ying-template-home .worlds-grid,
  .ying-template-home .posts-grid {
    grid-template-columns: 1fr;
  }

  .ying-template-home .svc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ying-home-footer .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ying-template-home .hero-title {
    font-size: 34px;
  }

  .ying-template-home .about-title,
  .ying-template-home .nl-title,
  .ying-template-home .worlds-title,
  .ying-template-home .svc-title {
    font-size: 30px;
  }

  .ying-template-home .svc-grid {
    grid-template-columns: 1fr;
  }

  .ying-template-home .nl-form,
  .ying-home-footer .footer-nl,
  .ying-home-footer .footer-bottom {
    flex-direction: column;
  }
}

.nav-wrapper {
  background: rgba(243, 240, 235, 0.95);
  border-bottom: 1px solid var(--ying-border);
  padding: 18px 0;
}

.nav-container {
  max-width: 1100px;
}

.logo {
  color: var(--ying-text);
  font-family: var(--ying-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  text-decoration: none;
}

.logo-img {
  display: none;
}

.logo::before {
  content: "Ying";
}

.logo::after {
  content: "x";
  color: var(--ying-gold);
  font-size: 9px;
  margin-left: 1px;
  vertical-align: super;
}

.nav-links {
  gap: 36px;
}

.nav-links a,
.mobile-nav-links a {
  color: var(--ying-muted);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: none;
}

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

.nav-cta {
  background: var(--ying-accent);
  border-radius: 2px;
  color: var(--ying-white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 11px 24px;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--ying-accent-hover);
  color: var(--ying-white);
}

.ying-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.ying-section {
  padding: 96px 0;
}

.ying-section-card {
  background: var(--ying-card);
}

.ying-section-dark {
  background: var(--ying-dark);
}

.ying-eyebrow {
  align-items: center;
  color: var(--ying-muted);
  display: flex;
  font-size: 10px;
  gap: 12px;
  letter-spacing: 5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.ying-eyebrow::after {
  background: var(--ying-border);
  content: "";
  flex: 1;
  height: 1px;
}

.ying-eyebrow-accent {
  color: var(--ying-accent);
}

.ying-title {
  font-size: 42px;
  line-height: 1.4;
  margin: 0;
  white-space: pre-line;
}

.ying-btn {
  align-items: center;
  border-radius: 2px;
  display: inline-flex;
  font-family: var(--ying-sans);
  font-size: 11px;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 2px;
  line-height: 1.2;
  padding: 14px 28px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.ying-btn-accent {
  background: var(--ying-accent);
  color: #fff;
}

.ying-btn-accent:hover {
  background: var(--ying-accent-hover);
  color: #fff;
}

.ying-btn-ghost {
  background: transparent;
  border: 1px solid rgba(28, 26, 20, 0.25);
  color: var(--ying-text);
}

.ying-btn-ghost:hover {
  border-color: var(--ying-accent);
  color: var(--ying-accent);
}

.ying-btn-lg {
  font-size: 13px;
  padding: 16px 36px;
}

.ying-service-hero {
  border-bottom: 1px solid var(--ying-border);
  padding: 96px 0 80px;
}

.ying-service-hero-inner {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: 1fr 420px;
}

.ying-hero-tag {
  background: rgba(158, 74, 30, 0.08);
  border-radius: 999px;
  color: var(--ying-accent);
  display: inline-block;
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 24px;
  padding: 5px 14px;
  text-transform: uppercase;
}

.ying-service-hero-title {
  font-size: 50px;
  line-height: 1.35;
  margin: 0 0 20px;
  white-space: pre-line;
}

.ying-service-hero-subtitle {
  color: var(--ying-mid);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  margin-bottom: 12px;
}

.ying-service-hero-desc {
  color: var(--ying-muted);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 460px;
}

.ying-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ying-hero-note {
  color: var(--ying-muted);
  font-size: 11px;
  letter-spacing: 0.5px;
  margin-top: 12px;
}

.ying-service-hero-image {
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
}

.ying-service-hero-image img,
.ying-cover-img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.ying-trust-bar {
  background: var(--ying-dark);
  padding: 18px 0;
}

.ying-trust-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.ying-trust-item {
  border-right: 1px solid var(--ying-border-dark);
  color: rgba(250, 249, 246, 0.5);
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 0 32px;
}

.ying-trust-item:last-child {
  border-right: 0;
}

.ying-trust-item strong,
.ying-trust-item b {
  color: rgba(250, 249, 246, 0.85);
  font-weight: 500;
}

.ying-pain-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
}

.ying-pain-card {
  background: var(--ying-white);
  border: 1px solid var(--ying-border);
  border-radius: 2px;
  border-top: 2px solid var(--ying-card);
  padding: 36px 28px;
  transition: border-top-color 0.2s;
}

.ying-pain-card:hover {
  border-top-color: var(--ying-accent);
}

.ying-pain-num {
  color: var(--ying-muted);
  display: block;
  font-family: var(--ying-serif);
  font-size: 10px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.ying-pain-icon {
  align-items: center;
  background: rgba(158, 74, 30, 0.08);
  border-radius: 50%;
  color: var(--ying-accent);
  display: flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 20px;
  width: 48px;
}

.ying-pain-title {
  font-size: 19px;
  line-height: 1.5;
  margin-bottom: 10px;
  white-space: pre-line;
}

.ying-mini-divider {
  background: var(--ying-accent);
  height: 1px;
  margin: 12px 0 16px;
  width: 18px;
}

.ying-pain-desc,
.ying-rich-small {
  color: var(--ying-muted);
  font-size: 13px;
  line-height: 1.85;
}

.ying-pain-footer {
  color: var(--ying-mid);
  font-size: 14px;
  margin-top: 40px;
  text-align: center;
}

.ying-case-carousel {
  margin-top: 52px;
  overflow: hidden;
  position: relative;
}

.ying-case-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.ying-case-slide {
  min-width: 100%;
}

.ying-case-card {
  align-items: start;
  background: var(--ying-white);
  border: 1px solid var(--ying-border);
  border-radius: 2px;
  display: grid;
  gap: 52px;
  grid-template-columns: 1fr 300px;
  padding: 56px;
}

.ying-case-tag,
.ying-pill {
  background: rgba(158, 74, 30, 0.08);
  border-radius: 999px;
  color: var(--ying-accent);
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  padding: 4px 12px;
  text-transform: uppercase;
}

.ying-case-title {
  font-size: 28px;
  line-height: 1.45;
  margin-bottom: 20px;
  white-space: pre-line;
}

.ying-case-copy {
  color: var(--ying-mid);
  font-size: 14px;
  line-height: 1.85;
}

.ying-case-media {
  aspect-ratio: 3 / 4;
  border-radius: 2px;
  overflow: hidden;
}

.ying-case-controls {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

.ying-case-button {
  align-items: center;
  background: var(--ying-card);
  border: 1px solid rgba(28, 26, 20, 0.12);
  border-radius: 50%;
  color: var(--ying-text);
  cursor: pointer;
  display: flex;
  font-size: 15px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.ying-case-button:hover {
  background: var(--ying-accent);
  border-color: var(--ying-accent);
  color: #fff;
}

.ying-how-inner {
  align-items: start;
  display: grid;
  gap: 80px;
  grid-template-columns: 340px 1fr;
}

.ying-how-left p {
  color: var(--ying-muted);
  font-size: 14px;
  line-height: 1.9;
  margin-top: 16px;
}

.ying-how-step {
  align-items: start;
  border-bottom: 1px solid var(--ying-border);
  display: grid;
  gap: 24px;
  grid-template-columns: 56px 1fr;
  padding: 32px 0;
}

.ying-how-step:first-child {
  border-top: 1px solid var(--ying-border);
}

.ying-step-num {
  color: var(--ying-accent);
  font-family: var(--ying-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  padding-top: 4px;
}

.ying-step-title {
  font-size: 19px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.ying-step-output {
  border: 1px solid rgba(158, 74, 30, 0.25);
  border-radius: 999px;
  color: var(--ying-accent);
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.5px;
  margin-top: 12px;
  padding: 4px 14px;
}

.ying-about-strip {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: 260px 1fr;
}

.ying-about-photo {
  aspect-ratio: 3 / 4;
  border-radius: 2px;
  overflow: hidden;
}

.ying-about-name {
  color: #f5f3ef;
  font-size: 28px;
  line-height: 1.35;
  margin-bottom: 6px;
}

.ying-about-role {
  color: var(--ying-gold);
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.ying-dark-copy,
.ying-dark-copy p {
  color: rgba(250, 249, 246, 0.65);
  font-size: 14px;
  line-height: 1.9;
}

.ying-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.ying-dark-tag {
  border: 1px solid rgba(250, 249, 246, 0.12);
  border-radius: 999px;
  color: rgba(250, 249, 246, 0.4);
  font-size: 10px;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  text-transform: uppercase;
}

.ying-package-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
}

.ying-package-card {
  border-radius: 2px;
  padding: 44px;
}

.ying-package-main {
  background: var(--ying-dark);
  color: var(--ying-white);
}

.ying-package-alt {
  background: var(--ying-white);
  border: 1px solid var(--ying-border);
}

.ying-package-label {
  color: var(--ying-muted);
  display: block;
  font-size: 10px;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.ying-package-main .ying-package-label {
  color: rgba(250, 249, 246, 0.3);
}

.ying-package-title {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 6px;
}

.ying-package-main .ying-package-title {
  color: #f5f3ef;
}

.ying-package-desc {
  color: rgba(250, 249, 246, 0.6);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.ying-package-alt .ying-package-desc {
  color: var(--ying-mid);
}

.ying-package-list {
  list-style: none;
  margin: 20px 0 32px;
  padding: 0;
}

.ying-package-list li {
  border-bottom: 1px solid rgba(28, 26, 20, 0.06);
  color: var(--ying-mid);
  display: flex;
  font-size: 13px;
  gap: 10px;
  line-height: 1.6;
  padding: 7px 0;
}

.ying-package-list li::before {
  color: var(--ying-accent);
  content: "+";
  flex-shrink: 0;
}

.ying-package-main .ying-package-list li {
  border-bottom-color: rgba(250, 249, 246, 0.06);
  color: rgba(250, 249, 246, 0.6);
}

.ying-package-main .ying-package-list li::before {
  color: var(--ying-sand);
}

.ying-testimonial-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
}

.ying-testimonial-card {
  background: var(--ying-white);
  border: 1px solid var(--ying-border);
  border-radius: 2px;
  padding: 32px 28px;
}

.ying-testimonial-mark {
  color: rgba(158, 74, 30, 0.2);
  display: block;
  font-family: var(--ying-serif);
  font-size: 40px;
  line-height: 0.5;
  margin-bottom: 20px;
}

.ying-testimonial-body,
.ying-testimonial-body p {
  color: var(--ying-mid);
  font-size: 14px;
  font-style: italic;
  line-height: 1.85;
}

.ying-testimonial-author {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.ying-avatar {
  align-items: center;
  background: rgba(158, 74, 30, 0.1);
  border-radius: 50%;
  color: var(--ying-accent);
  display: flex;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  height: 36px;
  justify-content: center;
  overflow: hidden;
  width: 36px;
}

.ying-avatar img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ying-testimonial-name {
  color: var(--ying-text);
  font-size: 13px;
  font-weight: 500;
  margin: 0;
}

.ying-testimonial-role {
  color: var(--ying-muted);
  font-size: 11px;
  margin: 0;
}

.ying-bottom-cta {
  align-items: center;
  background: var(--ying-dark);
  border-radius: 2px;
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr auto;
  margin: 0 0 96px;
  overflow: hidden;
  padding: 80px;
  position: relative;
}

.ying-bottom-cta::before {
  background: rgba(158, 74, 30, 0.06);
  border-radius: 50%;
  content: "";
  height: 400px;
  pointer-events: none;
  position: absolute;
  right: -60px;
  top: -120px;
  width: 400px;
}

.ying-bottom-title {
  color: #f5f3ef;
  font-size: 34px;
  line-height: 1.4;
  margin-bottom: 12px;
  position: relative;
  white-space: pre-line;
}

.ying-bottom-sub {
  color: rgba(250, 249, 246, 0.5);
  font-size: 14px;
  line-height: 1.8;
  max-width: 460px;
  position: relative;
}

.ying-bottom-right {
  position: relative;
  text-align: right;
}

.ying-bottom-note {
  color: rgba(250, 249, 246, 0.25);
  font-size: 11px;
  margin-top: 10px;
  text-align: center;
}

.ying-home-hero {
  min-height: 600px;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.ying-home-hero-img {
  inset: 0;
  position: absolute;
}

.ying-home-hero-overlay {
  background: linear-gradient(to right, rgba(28, 26, 20, 0.72) 0%, rgba(28, 26, 20, 0.2) 60%, rgba(28, 26, 20, 0.05) 100%);
  inset: 0;
  position: absolute;
}

.ying-home-hero-content {
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  max-width: 700px;
  padding: 0 80px;
  position: absolute;
}

.ying-home-hero-title {
  color: var(--ying-white);
  font-size: 60px;
  line-height: 1.3;
  margin-bottom: 24px;
  white-space: pre-line;
}

.ying-home-hero-sub {
  color: rgba(250, 249, 246, 0.7);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 420px;
}

.ying-cred-bar {
  background: var(--ying-dark-2);
  padding: 20px 0;
}

.ying-about-home {
  border-bottom: 1px solid var(--ying-border);
  padding: 100px 0;
}

.ying-home-two-col {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 420px;
}

.ying-home-copy p {
  color: var(--ying-mid);
  font-size: 15px;
  line-height: 1.95;
}

.ying-home-image {
  aspect-ratio: 3 / 4;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.ying-newsletter {
  background: var(--ying-dark);
  overflow: hidden;
  padding: 100px 0;
  position: relative;
}

.ying-newsletter::before {
  background: rgba(158, 74, 30, 0.06);
  border-radius: 50%;
  content: "";
  height: 600px;
  pointer-events: none;
  position: absolute;
  right: -100px;
  top: -200px;
  width: 600px;
}

.ying-newsletter-inner {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
}

.ying-newsletter-title {
  color: var(--ying-white);
  font-size: 38px;
  line-height: 1.4;
  margin-bottom: 20px;
  white-space: pre-line;
}

.ying-newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.ying-newsletter-input {
  background: rgba(250, 249, 246, 0.08);
  border: 1px solid rgba(250, 249, 246, 0.12);
  border-radius: 2px;
  color: var(--ying-white);
  flex: 1;
  font-family: var(--ying-sans);
  font-size: 13px;
  outline: none;
  padding: 12px 16px;
}

.ying-worlds,
.ying-posts {
  border-bottom: 1px solid var(--ying-border);
  padding: 100px 0;
}

.ying-world-grid,
.ying-post-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 52px;
}

.ying-post-grid {
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}

.ying-photo-card {
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  color: var(--ying-white);
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.ying-photo-card img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  width: 100%;
}

.ying-photo-card:hover img {
  transform: scale(1.04);
}

.ying-photo-overlay {
  background: linear-gradient(to top, rgba(28, 26, 20, 0.8) 0%, rgba(28, 26, 20, 0.15) 55%);
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: flex-end;
  padding: 32px;
  position: absolute;
}

.ying-photo-label {
  color: rgba(250, 249, 246, 0.5);
  font-size: 10px;
  letter-spacing: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.ying-photo-title {
  color: var(--ying-white);
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.ying-photo-desc {
  color: rgba(250, 249, 246, 0.65);
  font-size: 13px;
  line-height: 1.75;
}

.ying-service-cards {
  background: var(--ying-dark);
  padding: 100px 0;
}

.ying-service-grid {
  background: rgba(250, 249, 246, 0.06);
  border: 1px solid rgba(250, 249, 246, 0.06);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
}

.ying-home-service-card {
  background: var(--ying-dark-2);
  color: var(--ying-white);
  display: block;
  padding: 36px 28px;
  text-decoration: none;
}

.ying-home-service-card:hover {
  background: var(--ying-dark-3);
  color: var(--ying-white);
}

.ying-home-service-title {
  color: var(--ying-white);
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.ying-home-service-desc {
  color: rgba(250, 249, 246, 0.45);
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.site-footer {
  background: var(--ying-bg);
  border-top: 1px solid var(--ying-border);
  padding: 40px 0;
}

.footer-shell,
.footer-top,
.footer-bottom {
  display: block;
}

.ying-footer-inner,
.footer-bottom {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.ying-footer-logo {
  color: var(--ying-text);
  font-family: var(--ying-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  text-decoration: none;
}

.ying-footer-logo sup {
  color: var(--ying-gold);
  font-size: 9px;
}

.ying-footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ying-footer-links a,
.footer-copyright {
  color: var(--ying-muted);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
}

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

@media (max-width: 900px) {
  .ying-wrap,
  body.home,
  body.page-template-page-service {
    --container-padding: 24px;
  }

  .ying-wrap {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .ying-service-hero-inner,
  .ying-home-two-col,
  .ying-newsletter-inner,
  .ying-how-inner,
  .ying-about-strip,
  .ying-case-card,
  .ying-bottom-cta {
    grid-template-columns: 1fr;
  }

  .ying-service-hero-image,
  .ying-about-photo,
  .ying-home-image,
  .ying-case-media {
    aspect-ratio: 16 / 9;
  }

  .ying-service-hero-title {
    font-size: 34px;
  }

  .ying-home-hero-content {
    padding: 0 24px;
  }

  .ying-home-hero-title {
    font-size: 42px;
  }

  .ying-title {
    font-size: 34px;
  }

  .ying-pain-grid,
  .ying-package-grid,
  .ying-testimonial-grid,
  .ying-world-grid,
  .ying-post-grid,
  .ying-service-grid {
    grid-template-columns: 1fr;
  }

  .ying-trust-item {
    border: 0;
    padding: 8px 18px;
  }

  .ying-case-card {
    padding: 36px 28px;
  }

  .ying-bottom-cta {
    padding: 48px 36px;
  }

  .ying-bottom-right {
    text-align: left;
  }
}

/* Service page, matched to ying-marketing-services_2.html. */
body.page-template-page-service {
  background: #f3f0eb;
}

.ying-service-nav,
.ying-service-footer {
  --bg: #f3f0eb;
  --dark: #1c1a14;
  --text: #1c1a14;
  --text-muted: #9a9690;
  --accent: #9e4a1e;
  --accent-hover: #c4652a;
  --gold: #b09a72;
  --border: rgba(28, 26, 20, 0.08);
  --serif: "Noto Serif TC", Georgia, serif;
  --sans: "Noto Sans TC", "PingFang TC", sans-serif;
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.ying-service-nav .wrap,
.ying-service-footer .wrap {
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 40px;
}

.ying-service-nav {
  backdrop-filter: blur(8px);
  background: rgba(243, 240, 235, 0.95);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.ying-service-nav .nav-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.ying-service-nav .logo,
.ying-service-footer .footer-logo {
  color: var(--text);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  text-decoration: none;
}

.ying-service-nav .logo::before,
.ying-service-nav .logo::after,
.ying-service-footer .footer-logo::before,
.ying-service-footer .footer-logo::after {
  content: none;
}

.ying-service-nav .logo sup,
.ying-service-footer .footer-logo sup {
  color: var(--gold);
  font-size: 9px;
  margin-left: 1px;
}

.ying-service-nav .nav-links,
.ying-service-footer .footer-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ying-service-nav .nav-links a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.2s;
}

.ying-service-nav .nav-links a:hover {
  color: var(--text);
}

.ying-service-nav .nav-cta {
  background: var(--accent);
  border-radius: 2px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 11px 24px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.ying-service-nav .nav-cta:hover {
  background: var(--accent-hover);
  color: #fff;
}

.ying-service-footer {
  background: #f3f0eb;
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.ying-service-footer .footer-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.ying-service-footer .footer-logo {
  font-size: 18px;
}

.ying-service-footer .footer-links {
  gap: 28px;
}

.ying-service-footer .footer-links a {
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.ying-service-footer .footer-links a:hover {
  color: var(--accent);
}

.ying-service-footer .footer-copy {
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 1.5px;
  margin: 0;
}

.ying-template-service {
  --bg: #f3f0eb;
  --bg-card: #eceae4;
  --bg-white: #faf9f6;
  --dark: #1c1a14;
  --dark-2: #2a2820;
  --dark-3: #32302a;
  --text: #1c1a14;
  --text-mid: #5a5750;
  --text-muted: #9a9690;
  --accent: #9e4a1e;
  --accent-hover: #c4652a;
  --accent-sand: #e8d5b0;
  --gold: #b09a72;
  --border: rgba(28, 26, 20, 0.08);
  --border-dark: rgba(250, 249, 246, 0.08);
  --serif: "Noto Serif TC", Georgia, serif;
  --sans: "Noto Sans TC", "PingFang TC", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.8;
  overflow-x: hidden;
}

.ying-template-service *,
.ying-template-service *::before,
.ying-template-service *::after {
  box-sizing: border-box;
}

.ying-template-service .wrap {
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 40px;
}

.ying-template-service .section {
  padding: 96px 0;
}

.ying-template-service .section--dark {
  background: var(--dark);
}

.ying-template-service .section--card {
  background: var(--bg-card);
}

.ying-template-service .eyebrow {
  align-items: center;
  color: var(--text-muted);
  display: flex;
  font-size: 10px;
  gap: 12px;
  letter-spacing: 5px;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.ying-template-service .eyebrow::after {
  background: var(--border);
  content: "";
  flex: 1;
  height: 1px;
}

.ying-template-service .eyebrow--accent {
  color: var(--accent);
}

.ying-template-service .eyebrow--dark {
  color: rgba(250, 249, 246, 0.3);
}

.ying-template-service .eyebrow--dark::after {
  background: var(--border-dark);
}

.ying-template-service .section-title {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.4;
  margin: 0;
  white-space: pre-line;
}

.ying-template-service .section-title em {
  color: var(--accent);
  font-style: normal;
}

.ying-template-service .btn {
  align-items: center;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 2px;
  padding: 14px 28px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.ying-template-service .btn--accent {
  background: var(--accent);
  color: #fff;
}

.ying-template-service .btn--accent:hover {
  background: var(--accent-hover);
  color: #fff;
}

.ying-template-service .btn--ghost {
  background: transparent;
  border: 1px solid rgba(28, 26, 20, 0.25);
  color: var(--text);
}

.ying-template-service .btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.ying-template-service .btn--lg {
  font-size: 13px;
  padding: 16px 36px;
}

.ying-template-service .hero {
  border-bottom: 1px solid var(--border);
  padding: 96px 0 80px;
}

.ying-template-service .hero-inner {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: 1fr 420px;
}

.ying-template-service .hero-tag {
  background: rgba(158, 74, 30, 0.08);
  border-radius: 999px;
  color: var(--accent);
  display: inline-block;
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 24px;
  padding: 5px 14px;
  text-transform: uppercase;
}

.ying-template-service .hero-title {
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.35;
  margin: 0 0 20px;
  white-space: pre-line;
}

.ying-template-service .hero-title em {
  color: var(--text-mid);
  font-style: italic;
  font-weight: 400;
}

.ying-template-service .hero-subtitle {
  color: var(--text-mid);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  margin: 0 0 12px;
}

.ying-template-service .hero-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 460px;
}

.ying-template-service .hero-desc p,
.ying-template-service .pain-desc p,
.ying-template-service .how-left p,
.ying-template-service .step-body p,
.ying-template-service .about-bio p,
.ying-template-service .pkg-desc p,
.ying-template-service .testi-body p,
.ying-template-service .bottom-cta-sub p,
.ying-template-service .bottom-cta-note p {
  margin: 0;
}

.ying-template-service .hero-btns {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ying-template-service .hero-note {
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.5px;
  margin: 12px 0 0;
}

.ying-template-service .hero-image {
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
}

.ying-template-service .hero-image img,
.ying-template-service .case-img img,
.ying-template-service .about-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.ying-template-service .trust-bar {
  background: var(--dark);
  padding: 18px 0;
}

.ying-template-service .trust-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
}

.ying-template-service .trust-item {
  align-items: center;
  border-right: 1px solid var(--border-dark);
  color: rgba(250, 249, 246, 0.5);
  display: flex;
  font-size: 12px;
  gap: 10px;
  letter-spacing: 0.5px;
  padding: 0 32px;
}

.ying-template-service .trust-item:last-child {
  border-right: none;
}

.ying-template-service .trust-item strong {
  color: rgba(250, 249, 246, 0.85);
  font-weight: 500;
}

.ying-template-service .pain-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
}

.ying-template-service .pain-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  border-top: 2px solid var(--bg-card);
  padding: 36px 28px;
  transition: border-top-color 0.2s;
}

.ying-template-service .pain-card:hover {
  border-top-color: var(--accent);
}

.ying-template-service .pain-num {
  color: var(--text-muted);
  display: block;
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.ying-template-service .pain-icon {
  align-items: center;
  background: rgba(158, 74, 30, 0.08);
  border-radius: 50%;
  color: var(--accent);
  display: flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 20px;
  width: 48px;
}

.ying-template-service .pain-icon svg {
  height: 22px;
  width: 22px;
}

.ying-template-service .pain-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 10px;
  white-space: pre-line;
}

.ying-template-service .pain-divider {
  background: var(--accent);
  height: 1px;
  margin: 12px 0 16px;
  width: 18px;
}

.ying-template-service .pain-desc {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.85;
}

.ying-template-service .pain-footer {
  margin-top: 40px;
  text-align: center;
}

.ying-template-service .pain-footer p {
  align-items: center;
  color: var(--text-mid);
  display: inline-flex;
  font-size: 14px;
  gap: 10px;
  margin: 0;
}

.ying-template-service .pain-footer p::before {
  color: var(--accent);
  content: "✓";
  font-size: 13px;
}

.ying-template-service .carousel-wrap {
  margin-top: 52px;
  overflow: hidden;
  position: relative;
}

.ying-template-service .carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.ying-template-service .case-slide {
  min-width: 100%;
}

.ying-template-service .case-card {
  align-items: start;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: grid;
  gap: 52px;
  grid-template-columns: 1fr 300px;
  padding: 56px;
}

.ying-template-service .case-tag {
  background: rgba(158, 74, 30, 0.08);
  border-radius: 999px;
  color: var(--accent);
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  padding: 4px 12px;
  text-transform: uppercase;
}

.ying-template-service .case-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 28px;
  white-space: pre-line;
}

.ying-template-service .case-body {
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.95;
  margin-bottom: 20px;
}

.ying-template-service .case-body p + p {
  margin-top: 14px;
}

.ying-template-service .case-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 32px;
}

.ying-template-service .case-stat {
  background: var(--bg-card);
  border-radius: 2px;
  padding: 18px 16px;
}

.ying-template-service .case-stat-num {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1;
  margin: 0 0 6px;
}

.ying-template-service .case-stat-label {
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
}

.ying-template-service .case-quote {
  border-left: 2px solid var(--accent);
  color: var(--text-mid);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.8;
  margin: 0 0 10px;
  padding-left: 18px;
}

.ying-template-service .case-attr {
  color: var(--text-muted);
  font-size: 12px;
  margin: 0;
}

.ying-template-service .case-img {
  aspect-ratio: 3 / 4;
  border-radius: 2px;
  overflow: hidden;
}

.ying-template-service .carousel-controls {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.ying-template-service .carousel-dots {
  display: flex;
  gap: 8px;
}

.ying-template-service .dot {
  background: rgba(28, 26, 20, 0.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 8px;
  padding: 0;
  transition: background 0.2s, width 0.2s;
  width: 8px;
}

.ying-template-service .dot.active {
  background: var(--accent);
  border-radius: 999px;
  width: 24px;
}

.ying-template-service .carousel-arrows {
  display: flex;
  gap: 10px;
}

.ying-template-service .arrow {
  align-items: center;
  background: var(--bg-card);
  border: 1px solid rgba(28, 26, 20, 0.12);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  display: flex;
  font-size: 15px;
  height: 42px;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  width: 42px;
}

.ying-template-service .arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.ying-template-service .how-inner {
  align-items: start;
  display: grid;
  gap: 80px;
  grid-template-columns: 340px 1fr;
}

.ying-template-service .how-left p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.9;
  margin-top: 16px;
}

.ying-template-service .how-steps {
  display: flex;
  flex-direction: column;
}

.ying-template-service .how-step {
  align-items: start;
  border-bottom: 1px solid var(--border);
  display: grid;
  gap: 24px;
  grid-template-columns: 56px 1fr;
  padding: 32px 0;
}

.ying-template-service .how-step:first-child {
  border-top: 1px solid var(--border);
}

.ying-template-service .step-num {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  padding-top: 4px;
}

.ying-template-service .step-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 10px;
}

.ying-template-service .step-body {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.85;
}

.ying-template-service .step-output {
  border: 1px solid rgba(158, 74, 30, 0.25);
  border-radius: 999px;
  color: var(--accent);
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.5px;
  margin-top: 12px;
  padding: 4px 14px;
}

.ying-template-service .about-strip {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: 260px 1fr;
}

.ying-template-service .about-photo {
  aspect-ratio: 3 / 4;
  border-radius: 2px;
  overflow: hidden;
}

.ying-template-service .about-name {
  color: #f5f3ef;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 6px;
}

.ying-template-service .about-role {
  color: var(--gold);
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.ying-template-service .about-bio {
  color: rgba(250, 249, 246, 0.65);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 14px;
}

.ying-template-service .about-bio p + p {
  margin-top: 14px;
}

.ying-template-service .about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.ying-template-service .about-tag {
  border: 1px solid rgba(250, 249, 246, 0.12);
  border-radius: 999px;
  color: rgba(250, 249, 246, 0.4);
  font-size: 10px;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  text-transform: uppercase;
}

.ying-template-service .pkg-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
}

.ying-template-service .pkg-card {
  border-radius: 2px;
  padding: 44px;
}

.ying-template-service .pkg-card--main {
  background: var(--dark);
}

.ying-template-service .pkg-card--alt {
  background: var(--bg-white);
  border: 1px solid var(--border);
}

.ying-template-service .pkg-label {
  display: block;
  font-size: 10px;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.ying-template-service .pkg-card--main .pkg-label {
  color: rgba(250, 249, 246, 0.3);
}

.ying-template-service .pkg-card--alt .pkg-label {
  color: var(--text-muted);
}

.ying-template-service .pkg-free-label {
  background: rgba(158, 74, 30, 0.1);
  border-radius: 999px;
  color: var(--accent);
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding: 4px 12px;
  text-transform: uppercase;
}

.ying-template-service .pkg-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 6px;
}

.ying-template-service .pkg-card--main .pkg-title {
  color: #f5f3ef;
}

.ying-template-service .pkg-duration {
  display: block;
  font-size: 12px;
  margin-bottom: 20px;
}

.ying-template-service .pkg-card--main .pkg-duration {
  color: rgba(250, 249, 246, 0.35);
}

.ying-template-service .pkg-card--alt .pkg-duration {
  color: var(--text-muted);
}

.ying-template-service .pkg-price {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  margin: 20px 0 24px;
}

.ying-template-service .pkg-card--main .pkg-price {
  color: var(--accent-sand);
}

.ying-template-service .pkg-card--alt .pkg-price {
  color: var(--accent);
  font-size: 26px;
}

.ying-template-service .pkg-desc {
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 20px;
}

.ying-template-service .pkg-card--main .pkg-desc {
  color: rgba(250, 249, 246, 0.6);
}

.ying-template-service .pkg-divider {
  height: 1px;
  margin: 20px 0;
}

.ying-template-service .pkg-card--main .pkg-divider {
  background: rgba(250, 249, 246, 0.08);
}

.ying-template-service .pkg-card--alt .pkg-divider {
  background: var(--border);
}

.ying-template-service .pkg-includes-label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.ying-template-service .pkg-card--main .pkg-includes-label {
  color: rgba(250, 249, 246, 0.25);
}

.ying-template-service .pkg-card--alt .pkg-includes-label {
  color: var(--text-muted);
}

.ying-template-service .pkg-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.ying-template-service .pkg-list li {
  align-items: flex-start;
  border-bottom: 1px solid;
  display: flex;
  font-size: 13px;
  gap: 10px;
  line-height: 1.6;
  padding: 7px 0;
}

.ying-template-service .pkg-card--main .pkg-list li {
  border-bottom-color: rgba(250, 249, 246, 0.06);
  color: rgba(250, 249, 246, 0.6);
}

.ying-template-service .pkg-card--alt .pkg-list li {
  border-bottom-color: rgba(28, 26, 20, 0.06);
  color: var(--text-mid);
}

.ying-template-service .pkg-list li::before {
  content: "✓";
  flex-shrink: 0;
  margin-top: 1px;
}

.ying-template-service .pkg-card--main .pkg-list li::before {
  color: var(--accent-sand);
}

.ying-template-service .pkg-card--alt .pkg-list li::before {
  color: var(--accent);
}

.ying-template-service .pkg-card .btn {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.ying-template-service .pkg-guarantee,
.ying-template-service .pkg-note {
  display: block;
  font-size: 11px;
  margin-top: 14px;
  text-align: center;
}

.ying-template-service .pkg-card--main .pkg-guarantee {
  color: rgba(250, 249, 246, 0.25);
}

.ying-template-service .pkg-card--alt .pkg-note {
  color: var(--text-muted);
  margin-top: 16px;
}

.ying-template-service .testi-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
}

.ying-template-service .testi-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 32px 28px;
}

.ying-template-service .testi-mark {
  color: rgba(158, 74, 30, 0.2);
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  line-height: 0.5;
  margin-bottom: 20px;
}

.ying-template-service .testi-body {
  color: var(--text-mid);
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 24px;
}

.ying-template-service .testi-author {
  align-items: center;
  display: flex;
  gap: 12px;
}

.ying-template-service .testi-avatar {
  align-items: center;
  background: rgba(158, 74, 30, 0.1);
  border-radius: 50%;
  color: var(--accent);
  display: flex;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.ying-template-service .testi-name {
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  margin: 0;
}

.ying-template-service .testi-role {
  color: var(--text-muted);
  font-size: 11px;
  margin: 0;
}

.ying-template-service .bottom-cta-section {
  padding: 0 0 96px;
}

.ying-template-service .bottom-cta {
  align-items: center;
  background: var(--dark);
  border-radius: 2px;
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr auto;
  margin: 0;
  overflow: hidden;
  padding: 80px;
  position: relative;
}

.ying-template-service .bottom-cta::before {
  background: rgba(158, 74, 30, 0.06);
  border-radius: 50%;
  content: "";
  height: 400px;
  pointer-events: none;
  position: absolute;
  right: -60px;
  top: -120px;
  width: 400px;
}

.ying-template-service .bottom-cta-title {
  color: #f5f3ef;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 12px;
  white-space: pre-line;
}

.ying-template-service .bottom-cta-sub {
  color: rgba(250, 249, 246, 0.5);
  font-size: 14px;
  line-height: 1.8;
  max-width: 460px;
}

.ying-template-service .bottom-cta-right {
  flex-shrink: 0;
  position: relative;
  text-align: right;
}

.ying-template-service .bottom-cta-note {
  color: rgba(250, 249, 246, 0.25);
  font-size: 11px;
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 900px) {
  .ying-service-nav .wrap,
  .ying-service-footer .wrap,
  .ying-template-service .wrap {
    padding: 0 24px;
  }

  .ying-service-nav .nav-links {
    display: none;
  }

  .ying-template-service .hero-inner,
  .ying-template-service .case-card,
  .ying-template-service .how-inner,
  .ying-template-service .about-strip,
  .ying-template-service .pkg-grid,
  .ying-template-service .bottom-cta {
    grid-template-columns: 1fr;
  }

  .ying-template-service .hero-image,
  .ying-template-service .case-img,
  .ying-template-service .about-photo {
    aspect-ratio: 16 / 9;
  }

  .ying-template-service .hero-title,
  .ying-template-service .section-title {
    font-size: 34px;
  }

  .ying-template-service .pain-grid,
  .ying-template-service .testi-grid {
    grid-template-columns: 1fr;
  }

  .ying-template-service .case-card {
    padding: 36px 28px;
  }

  .ying-template-service .bottom-cta {
    padding: 48px 36px;
  }

  .ying-template-service .bottom-cta-right {
    text-align: left;
  }

  .ying-template-service .trust-item {
    border-right: 0;
    padding: 8px 18px;
  }
}

.ying-blog-nav .nav-links a.is-active,
.ying-article-nav .nav-links a.is-active {
  border-bottom: 1px solid var(--ying-accent);
  color: var(--ying-text);
  padding-bottom: 2px;
}

.ying-template-blog,
.ying-template-article {
  --max: 1100px;
}

.ying-template-blog .wrap,
.ying-template-article .wrap {
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 40px;
}

.ying-template-article .wrap--content {
  margin: 0 auto;
  max-width: 680px;
  padding: 0 40px;
}

.ying-blog-image-placeholder {
  background: var(--ying-card);
  height: 100%;
  width: 100%;
}

.ying-template-blog .blog-header {
  border-bottom: 1px solid var(--ying-border);
  padding: 64px 0 48px;
}

.ying-template-blog .blog-header-inner {
  align-items: flex-end;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.ying-template-blog .blog-eyebrow {
  color: var(--ying-muted);
  display: block;
  font-size: 10px;
  letter-spacing: 5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.ying-template-blog .blog-title {
  font-family: var(--ying-serif);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.3;
  margin: 0 0 14px;
}

.ying-template-blog .blog-desc {
  color: var(--ying-mid);
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
  max-width: 500px;
}

.ying-template-blog .filter-tabs {
  border-bottom: 1px solid var(--ying-border);
  display: flex;
  gap: 0;
  margin-bottom: 0;
}

.ying-template-blog .filter-tab {
  background: none;
  border-color: transparent;
  border-style: solid;
  border-width: 0 0 2px;
  color: var(--ying-muted);
  cursor: pointer;
  font-family: var(--ying-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 3px;
  margin-right: 36px;
  padding: 16px 0;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}

.ying-template-blog .filter-tab:hover,
.ying-template-blog .filter-tab.active {
  border-bottom-color: var(--ying-accent);
  color: var(--ying-text);
}

.ying-template-blog .featured {
  padding: 56px 0 0;
}

.ying-template-blog .featured-label,
.ying-template-article .related-label {
  align-items: center;
  color: var(--ying-muted);
  display: flex;
  font-size: 10px;
  gap: 12px;
  letter-spacing: 4px;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.ying-template-blog .featured-label::after,
.ying-template-article .related-label::after {
  background: var(--ying-border);
  content: "";
  flex: 1;
  height: 1px;
}

.ying-template-blog .featured-card {
  background: var(--ying-white);
  border: 1px solid var(--ying-border);
  border-radius: 2px;
  color: var(--ying-text);
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 400px;
  overflow: hidden;
  text-decoration: none;
}

.ying-template-blog .featured-card:hover .featured-img img {
  transform: scale(1.03);
}

.ying-template-blog .featured-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.ying-template-blog .featured-img img,
.ying-template-blog .post-img img,
.ying-template-article .article-hero img,
.ying-template-article .related-img img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ying-template-blog .featured-img img,
.ying-template-blog .post-img img,
.ying-template-article .related-img img {
  transition: transform 0.45s ease;
}

.ying-template-blog .featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
}

.ying-template-blog .featured-cat,
.ying-template-blog .post-cat,
.ying-template-article .article-cat,
.ying-template-article .related-cat {
  color: var(--ying-accent);
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ying-template-blog .featured-title {
  font-family: var(--ying-serif);
  font-size: 26px;
  line-height: 1.5;
  margin: 0 0 16px;
}

.ying-template-blog .featured-excerpt,
.ying-template-blog .post-excerpt {
  color: var(--ying-mid);
  line-height: 1.9;
}

.ying-template-blog .featured-excerpt {
  font-size: 14px;
  margin: 0 0 28px;
}

.ying-template-blog .featured-meta {
  align-items: center;
  display: flex;
  gap: 16px;
}

.ying-template-blog .featured-date,
.ying-template-blog .post-date,
.ying-template-article .article-date,
.ying-template-article .article-read-time,
.ying-template-article .related-date {
  color: var(--ying-muted);
  font-size: 10px;
  letter-spacing: 2px;
}

.ying-template-blog .featured-read {
  border-bottom: 1px solid rgba(158, 74, 30, 0.3);
  color: var(--ying-accent);
  font-size: 10px;
  letter-spacing: 2px;
  padding-bottom: 2px;
  text-transform: uppercase;
}

.ying-template-blog .posts-section {
  padding: 56px 0 80px;
}

.ying-template-blog .posts-grid,
.ying-template-blog .more-grid {
  display: grid;
  gap: 36px 28px;
  grid-template-columns: repeat(3, 1fr);
}

.ying-template-blog .post-card {
  color: var(--ying-text);
  display: block;
  text-decoration: none;
}

.ying-template-blog .post-card.is-hidden,
.ying-template-blog .load-more.is-hidden {
  display: none;
}

.ying-template-blog [data-post-grid].is-empty {
  display: none;
}

.ying-template-blog .post-img {
  aspect-ratio: 3 / 2;
  background: var(--ying-card);
  border-radius: 2px;
  margin-bottom: 18px;
  overflow: hidden;
}

.ying-template-blog .post-card:hover .post-img img,
.ying-template-article .related-card:hover .related-img img {
  transform: scale(1.04);
}

.ying-template-blog .post-title {
  font-family: var(--ying-serif);
  font-size: 17px;
  letter-spacing: 0.5px;
  line-height: 1.55;
  margin: 0 0 10px;
}

.ying-template-blog .post-excerpt {
  color: var(--ying-muted);
  font-size: 13px;
  line-height: 1.8;
  margin: 0 0 12px;
}

.ying-template-blog .nl-banner {
  align-items: center;
  background: var(--ying-dark);
  border-radius: 2px;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr auto;
  margin: 16px 0 56px;
  padding: 48px 56px;
}

.ying-template-blog .nl-banner-eyebrow,
.ying-template-article .cta-service-eyebrow {
  color: rgba(250, 249, 246, 0.35);
  display: block;
  font-size: 10px;
  letter-spacing: 5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ying-template-blog .nl-banner-title {
  color: var(--ying-white);
  font-family: var(--ying-serif);
  font-size: 24px;
  line-height: 1.4;
  margin: 0 0 8px;
}

.ying-template-blog .nl-banner-desc,
.ying-template-article .cta-service-desc {
  color: rgba(250, 249, 246, 0.55);
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}

.ying-template-blog .nl-banner-form {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.ying-template-blog .nl-input {
  background: rgba(250, 249, 246, 0.08);
  border: 1px solid rgba(250, 249, 246, 0.12);
  border-radius: 2px;
  color: var(--ying-white);
  font-family: var(--ying-sans);
  font-size: 13px;
  outline: none;
  padding: 12px 16px;
  width: 240px;
}

.ying-template-blog .nl-input::placeholder {
  color: rgba(250, 249, 246, 0.25);
}

.ying-template-blog .btn-nl,
.ying-template-article .btn-cta-main {
  background: var(--ying-accent);
  border: none;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  font-family: var(--ying-sans);
  font-size: 10px;
  letter-spacing: 2px;
  padding: 12px 22px;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}

.ying-template-blog .btn-nl:hover,
.ying-template-article .btn-cta-main:hover {
  background: var(--ying-accent-hover);
}

.ying-template-blog .load-more {
  padding: 48px 0 0;
  text-align: center;
}

.ying-template-blog .btn-load {
  background: none;
  border: 1px solid rgba(28, 26, 20, 0.2);
  border-radius: 2px;
  color: var(--ying-mid);
  cursor: pointer;
  font-family: var(--ying-sans);
  font-size: 10px;
  letter-spacing: 3px;
  padding: 14px 36px;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}

.ying-template-blog .btn-load:hover {
  border-color: var(--ying-accent);
  color: var(--ying-accent);
}

.ying-template-article .article-header {
  padding: 64px 0 0;
}

.ying-template-article .article-back {
  color: var(--ying-muted);
  display: inline-flex;
  font-size: 10px;
  gap: 8px;
  letter-spacing: 2.5px;
  margin-bottom: 36px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.ying-template-article .article-back:hover {
  color: var(--ying-accent);
}

.ying-template-article .article-title {
  font-family: var(--ying-serif);
  font-size: 42px;
  letter-spacing: 1px;
  line-height: 1.35;
  margin: 0 0 20px;
}

.ying-template-article .article-meta {
  align-items: center;
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.ying-template-article .article-divider {
  background: var(--ying-border);
  height: 1px;
  width: 32px;
}

.ying-template-article .article-hero {
  margin-bottom: 0;
  width: 100%;
}

.ying-template-article .article-hero img {
  aspect-ratio: 21 / 9;
  max-height: 500px;
  object-position: center 35%;
}

.ying-template-article .article-body {
  padding: 56px 0 80px;
}

.ying-template-article .article-body__content p,
.ying-template-article .article-body__content li {
  color: var(--ying-mid);
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
}

.ying-template-article .article-body__content p {
  margin: 0 0 28px;
}

.ying-template-article .article-body__content h2,
.ying-template-article .article-body__content h3 {
  color: var(--ying-text);
  font-family: var(--ying-serif);
  font-weight: 600;
}

.ying-template-article .article-body__content h2 {
  font-size: 24px;
  margin: 48px 0 20px;
}

.ying-template-article .article-body__content h3 {
  font-size: 19px;
  margin: 36px 0 16px;
}

.ying-template-article .article-body__content blockquote {
  background: none;
  border: none;
  color: var(--ying-text);
  font-family: var(--ying-serif);
  font-size: 21px;
  font-style: italic;
  line-height: 1.8;
  margin: 48px 0;
  padding: 0;
  text-align: center;
}

.ying-template-article .article-body__content blockquote p {
  color: var(--ying-text);
  font-size: 21px;
  margin-bottom: 0;
}

.ying-template-article .article-body__content blockquote::before,
.ying-template-article .article-body__content blockquote::after {
  background: var(--ying-accent);
  content: "";
  display: block;
  height: 1px;
  margin: 24px auto;
  opacity: 0.6;
  width: 40px;
}

.ying-template-article .article-body__content ul,
.ying-template-article .article-body__content ol {
  margin-bottom: 28px;
  padding-left: 20px;
}

.ying-template-article .article-body__content strong {
  color: var(--ying-text);
  font-weight: 500;
}

.ying-template-article .article-body__content a {
  border-bottom: 1px solid rgba(158, 74, 30, 0.3);
  color: var(--ying-accent);
  text-decoration: none;
}

.ying-template-article .article-body__content hr {
  border: 0;
  border-top: 1px solid var(--ying-border);
  margin: 48px 0;
}

.ying-template-article .article-tags {
  border-bottom: 1px solid var(--ying-border);
  border-top: 1px solid var(--ying-border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 64px;
  padding: 28px 0;
}

.ying-template-article .article-tag {
  border: 1px solid rgba(28, 26, 20, 0.15);
  border-radius: 999px;
  color: var(--ying-mid);
  font-size: 10px;
  letter-spacing: 2px;
  padding: 5px 14px;
  text-transform: uppercase;
}

.ying-template-article .cta-service {
  align-items: center;
  background: var(--ying-dark);
  border-radius: 2px;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr auto;
  margin-bottom: 80px;
  padding: 40px 52px;
}

.ying-template-article .cta-service-title {
  color: #f5f3ef;
  font-family: var(--ying-serif);
  font-size: 26px;
  line-height: 1.45;
  margin: 0 0 12px;
}

.ying-template-article .cta-service-right {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 12px;
}

.ying-template-article .cta-service-note {
  color: rgba(250, 249, 246, 0.3);
  font-size: 12px;
  letter-spacing: 0.5px;
}

.ying-template-article .related {
  padding: 0 0 80px;
}

.ying-template-article .related-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.ying-template-article .related-card {
  background: var(--ying-white);
  border: 1px solid var(--ying-border);
  border-radius: 2px;
  color: var(--ying-text);
  display: block;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}

.ying-template-article .related-card:hover {
  border-color: rgba(28, 26, 20, 0.18);
  transform: translateY(-2px);
}

.ying-template-article .related-img {
  height: 200px;
  overflow: hidden;
}

.ying-template-article .related-body {
  padding: 18px 20px 20px;
}

.ying-template-article .related-title {
  color: var(--ying-text);
  font-family: var(--ying-serif);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 10px;
}

.ying-template-article .progress-bar {
  background: var(--ying-accent);
  height: 2px;
  left: 0;
  position: fixed;
  top: 0;
  transition: width 0.1s linear;
  width: 0;
  z-index: 200;
}

@media (max-width: 900px) {
  .ying-template-blog .wrap,
  .ying-template-article .wrap,
  .ying-template-article .wrap--content {
    padding: 0 24px;
  }

  .ying-blog-nav .nav-links,
  .ying-article-nav .nav-links {
    display: none;
  }

  .ying-template-blog .blog-header-inner,
  .ying-template-blog .featured-card,
  .ying-template-blog .nl-banner,
  .ying-template-article .cta-service {
    grid-template-columns: 1fr;
  }

  .ying-template-blog .blog-header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .ying-template-blog .posts-grid,
  .ying-template-blog .more-grid,
  .ying-template-article .related-grid {
    grid-template-columns: 1fr;
  }

  .ying-template-blog .featured-img,
  .ying-template-blog .post-img {
    aspect-ratio: 16 / 9;
  }

  .ying-template-blog .blog-title,
  .ying-template-article .article-title {
    font-size: 30px;
  }

  .ying-template-blog .nl-banner,
  .ying-template-article .cta-service {
    padding: 32px 28px;
  }

  .ying-template-blog .nl-banner-form {
    flex-direction: column;
  }

  .ying-template-blog .nl-input {
    width: 100%;
  }

  .ying-template-article .cta-service-right {
    align-items: flex-start;
  }
}

.ying-template-story {
  background: #f3f0eb;
  color: #1c1a14;
}

.ying-story-nav {
  background: rgba(243, 240, 235, 0.95);
  border-bottom: 1px solid rgba(28, 26, 20, 0.08);
}

.ying-story-nav .nav-links a.is-active {
  border-bottom: 1px solid var(--ying-accent);
  color: var(--ying-text);
  padding-bottom: 2px;
}

.ying-template-story .story-hero {
  min-height: 640px;
  overflow: hidden;
  position: relative;
}

.ying-template-story .story-hero__img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  width: 100%;
}

.ying-template-story .story-hero__overlay {
  background: linear-gradient(to right, rgba(28, 26, 20, 0.76) 0%, rgba(28, 26, 20, 0.34) 55%, rgba(28, 26, 20, 0.08) 100%);
  inset: 0;
  position: absolute;
}

.ying-template-story .story-hero__content {
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  max-width: 680px;
  padding: 120px 80px 80px;
  position: absolute;
}

.ying-template-story .story-hero__eyebrow,
.ying-template-story .story-numbers__eyebrow {
  align-items: center;
  color: rgba(250, 249, 246, 0.52);
  display: flex;
  font-size: 10px;
  gap: 12px;
  letter-spacing: 5px;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.ying-template-story .story-hero__eyebrow::before {
  background: rgba(250, 249, 246, 0.28);
  content: "";
  height: 1px;
  width: 32px;
}

.ying-template-story .story-hero__title {
  color: #faf9f6;
  font-family: var(--ying-serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.35;
  margin: 0 0 20px;
}

.ying-template-story .story-hero__title em {
  color: #e8d5b0;
  font-style: italic;
  font-weight: 400;
}

.ying-template-story .story-hero__subtitle {
  color: rgba(250, 249, 246, 0.72);
  font-size: 16px;
  line-height: 1.9;
  margin: 0;
  max-width: 420px;
}

.ying-template-story .story-numbers {
  border-bottom: 1px solid rgba(28, 26, 20, 0.08);
  padding: 96px 0;
}

.ying-template-story .story-numbers__eyebrow {
  color: #9a9690;
  margin-bottom: 48px;
}

.ying-template-story .story-numbers__eyebrow::after {
  background: rgba(28, 26, 20, 0.08);
  content: "";
  flex: 1;
  height: 1px;
}

.ying-template-story .story-numbers__grid {
  border: 1px solid rgba(28, 26, 20, 0.08);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ying-template-story .story-numbers__item {
  border-right: 1px solid rgba(28, 26, 20, 0.08);
  padding: 36px 32px;
}

.ying-template-story .story-numbers__item:last-child {
  border-right: 0;
}

.ying-template-story .story-numbers__value {
  color: #1c1a14;
  font-family: var(--ying-serif);
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1;
  margin: 0 0 12px;
}

.ying-template-story .story-numbers__value span {
  color: var(--ying-accent);
  font-size: 28px;
  font-weight: 400;
}

.ying-template-story .story-numbers__label {
  color: #5a5750;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 10px;
}

.ying-template-story .story-numbers__text {
  color: #9a9690;
  font-size: 11px;
  letter-spacing: 0.3px;
  line-height: 1.7;
  margin: 0;
}

.ying-template-story .story-chapter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 520px;
}

.ying-template-story .story-chapter--flip {
  direction: rtl;
}

.ying-template-story .story-chapter--flip > * {
  direction: ltr;
}

.ying-template-story .story-chapter__image {
  overflow: hidden;
  position: relative;
}

.ying-template-story .story-chapter__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  width: 100%;
}

.ying-template-story .story-chapter:hover .story-chapter__image img {
  transform: scale(1.03);
}

.ying-template-story .story-chapter__body {
  background: #f3f0eb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
}

.ying-template-story .story-chapter--dark .story-chapter__body {
  background: #2a2820;
}

.ying-template-story .story-chapter__number {
  color: var(--ying-accent);
  display: block;
  font-family: var(--ying-serif);
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.ying-template-story .story-chapter--dark .story-chapter__number {
  color: #e8d5b0;
}

.ying-template-story .story-chapter__title {
  color: #1c1a14;
  font-family: var(--ying-serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin: 0 0 20px;
}

.ying-template-story .story-chapter--dark .story-chapter__title {
  color: #f5f3ef;
}

.ying-template-story .story-chapter__copy p {
  color: #5a5750;
  font-size: 15px;
  line-height: 1.95;
  margin: 0 0 14px;
}

.ying-template-story .story-chapter--dark .story-chapter__copy p {
  color: rgba(250, 249, 246, 0.62);
}

.ying-template-story .story-chapter__copy p:last-child {
  margin-bottom: 0;
}

.ying-template-story .story-chapter__quote {
  border-left: 1px solid var(--ying-accent);
  color: #5a5750;
  font-family: var(--ying-serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.75;
  margin: 20px 0 0;
  padding-left: 16px;
}

.ying-template-story .story-chapter--dark .story-chapter__quote {
  border-left-color: #e8d5b0;
  color: rgba(250, 249, 246, 0.58);
}

.ying-template-story .story-closing {
  background: #eceae4;
  padding: 100px 0;
  text-align: center;
}

.ying-template-story .story-closing__title {
  color: #1c1a14;
  font-family: var(--ying-serif);
  font-size: clamp(30px, 4vw, 38px);
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  margin: 0 0 20px;
}

.ying-template-story .story-closing__description {
  color: #5a5750;
  font-size: 16px;
  line-height: 1.9;
  margin: 0 auto 48px;
  max-width: 560px;
}

.ying-template-story .story-closing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.ying-template-story .story-btn {
  border-radius: 2px;
  display: inline-flex;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 14px 28px;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ying-template-story .story-btn--primary {
  background: #1c1a14;
  color: #faf9f6;
}

.ying-template-story .story-btn--primary:hover {
  background: var(--ying-accent);
}

.ying-template-story .story-btn--ghost {
  border: 1px solid rgba(28, 26, 20, 0.25);
  color: #1c1a14;
}

.ying-template-story .story-btn--ghost:hover {
  border-color: var(--ying-accent);
  color: var(--ying-accent);
}

@media (max-width: 900px) {
  .ying-template-story .wrap {
    padding: 0 24px;
  }

  .ying-story-nav .nav-links {
    display: none;
  }

  .ying-template-story .story-hero {
    min-height: 580px;
  }

  .ying-template-story .story-hero__content {
    max-width: 100%;
    padding: 100px 32px 60px;
  }

  .ying-template-story .story-numbers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ying-template-story .story-numbers__item {
    border-bottom: 1px solid rgba(28, 26, 20, 0.08);
  }

  .ying-template-story .story-numbers__item:nth-child(2n) {
    border-right: 0;
  }

  .ying-template-story .story-chapter,
  .ying-template-story .story-chapter--flip {
    direction: ltr;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ying-template-story .story-chapter__image {
    aspect-ratio: 16 / 9;
  }

  .ying-template-story .story-chapter__body {
    padding: 48px 32px;
  }
}
